本帖最后由 潇湘溪语 于 2013-12-1 16:25 编辑
毕老师在比较器这一章节的时候,有如下代码:
class MyComp implements Comparator<Student>
{
public int compare(Student s1,Student s2)
{
int num = s1.getName().compareTo(s2.getName());
if(num==0)
return new Integer(s1.getAge()).compareTo(new Integer(s2.getAge()));
//其实按照java思维,要尽可以简单,高效,可以更改为。
return s1.getAge()-s2.getAge(); //我觉得更简单易写一些,呵呵。
return num;
}
}
|