Collections.sort方法是用來對集合中的元素進行排序的。它接受一個List類型的參數,對List中的元素進行排序。排序的方式取決于元素的自然順序,或者根據提供的Comparator來確定排序順序。排序后的結果會覆蓋原來的List。
例如,可以使用Collections.sort方法對一個List
List<Integer> list = new ArrayList<>();
list.add(3);
list.add(1);
list.add(2);
Collections.sort(list);
System.out.println(list); // 輸出:[1, 2, 3]
也可以使用Collections.sort方法對一個List
List<String> list = new ArrayList<>();
list.add("banana");
list.add("apple");
list.add("cherry");
Collections.sort(list, (s1, s2) -> s1.compareTo(s2));
System.out.println(list); // 輸出:[apple, banana, cherry]