快捷搜索:  汽车  科技

集合逆序排序(如何优雅的进行集合排序)

集合逆序排序(如何优雅的进行集合排序)  -如果o1>o2,返回正整数  -如果o1==o2,返回02. 可以将Comparator传递给sort方法(如Collections.sort或Array.sort)3. int compare(T o1 T o2)比较用来排序的两个参数  -如果o1<o2,返回负整数

字符串集合的排序

List<String> list=new ArrayList<String>(); //往集合中添加字符串元素list.add("10"); list.add("3"); list.add("20"); list.add("4"); //使用Collections类中的sort方法,对集合进行排序 Collections.sort(list); Collections.sort(list (l1 l2)->l1.compareTo(l2)); Collections.sort(list String::compareTo);具体根据某字段进行排序

方法引用方式:

1 class::staticMethod

2 引用名::实例方法

Student student1 = new Student("10"); Student student2 = new Student("3"); Student student3 = new Student("20"); Student student4 = new Student("4"); List<Student> students = Arrays.asList(student1 student2 student3 student4); students.sort((s1 s2)->student.sortStudent(s1 s2)); students.sort(Student::sortStudent); students.sort(Student::sortStudentV2); SortUtils sortUtils = new SortUtils(); students.sort((s1 s2)->sortUtils.sortStudent(s1 s2)); students.sort(new SortUtils()::sortStudent); for(Student str:students) { System.out.print(str.getName() " "); }

class SortUtilsV2{ public static int sortStudent(Student student1 Student student2){ return student1.getName().compareTo(student2.getName()); } } class Student{ private String name; public Student(String name){ this.name=name; } public String getName() { return name; } public static int sortStudent(Student student1 Student student2){ return student1.getName().compareTo(student2.getName()); } public int sortStudentV2(Student student){ return this.name.compareTo(student.getName()); } } class SortUtils{ public int sortStudent(Student student1 Student student2){ return student1.getName().compareTo(student2.getName()); } }

集合逆序排序(如何优雅的进行集合排序)(1)

Comparator接口

1. 强行对某个对象进行整体排序的比较函数

2. 可以将Comparator传递给sort方法(如Collections.sort或Array.sort)

3. int compare(T o1 T o2)比较用来排序的两个参数

  -如果o1<o2,返回负整数

  -如果o1==o2,返回0

  -如果o1>o2,返回正整数

4. boolean equals(Object obj)指示某个其他对象是否“等于”此Comparator

  此方法可以被Object类中的equals方法覆盖,不必重写

Comparable接口

1. 此接口强行对实现它的每个类的对象进行整体排序

2. 这种排序被称为类的自然排序,类的compareTo方法被称为它的自然比较方法

3. 对于集合,通过调用Collections.sort方法进行排序

4. 对于数组,通过调用Array.sort方法进行排序

5. int compareTo(T o)方法

  该对象小于,等于或大于指定对象,则分别返回负整数,零或正整数

猜您喜欢: