如图,可以直接在Student.java中实现两个接口,此时视频中演示的Collections.sort(studentList, new StudentComparator())已不再适用。请问现在怎样用sort方法进行排序?
希望大家多多指教,谢谢!
你是用Student类而不是StudentComparator类实现Comparator接口的,所以在sort的时候new StudentComparator()当然不适用了。?