在TreeSet里面:
当元素不具备比较性,或者具备的比较性不是需要的,
这时需要定义一个比较器,将比较器对象作为参数传递给TreeSet集合的构造函数
定义一个类,实现Comparator接口,覆盖compare方法
例:
//实现Comparator接口
class MyCompare implements Comparator{
//覆盖compare方法
public int compare(Object o1,Object o2){
Student s1=(Student)o1;
Student s2=(Student)o2;
//以名字排序
int num=s1.getName().compareTo(s2.getName());
//如果名字一样,那就以年龄的大小排序
if(num==0)
return s1.getAge()-s2.getAge();
return num;
}
} |
|