Collections.sort(list, this::compare);和Collections.sort(list, new Student());有什么区别
时间: 2024-05-31 20:10:45 浏览: 131
Java Collections.sort()实现List排序的默认方法和自定义方法
`Collections.sort(list, this::compare)`和`Collections.sort(list, new Student())`的区别在于传入的第二个参数不同。
`Collections.sort(list, this::compare)`中的第二个参数是一个方法引用,即使用当前类中的`compare`方法进行比较。这种方式适用于当前类已经实现了`Comparator`接口,且需要使用该类中已经实现的比较方法进行排序的情况。
而`Collections.sort(list, new Student())`中的第二个参数是一个新创建的`Student`对象,即使用该对象中的比较方法进行比较。这种方式适用于需要自定义比较方法,或者当前类没有实现`Comparator`接口的情况。
综上所述,`Collections.sort(list, this::compare)`适用于已经实现了`Comparator`接口且想要使用该类中已经实现的比较方法进行排序的情况,`Collections.sort(list, new Student())`适用于需要自定义比较方法或者当前类没有实现`Comparator`接口的情况。
阅读全文