Skip to content

Instantly share code, notes, and snippets.

@mevsungur
Created August 6, 2020 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mevsungur/2e492709e6dabc0e83726616c876b0e1 to your computer and use it in GitHub Desktop.
Save mevsungur/2e492709e6dabc0e83726616c876b0e1 to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
List<String> isimList = Arrays.asList("Sungur",null,"Mevlüt");
isimList.sort(Comparator.nullsFirst(String::compareTo));
isimList.stream().forEach(System.out::println);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment