public static Set<Student> getStudents()throws IOException
{
return getStudents(null);
}
public static Set<Student> getStudents(Comparator<Student> cmp)throws IOException
这里定义了2个比较方法,getStudents(Comparator<Student> cmp)传了一个Comparator比较器,
可没有定义Comparator方法怎么比较,是不是Comparator自身的比较是从大到小比较呢?
有点不明白?
|