class MyBean implements Comparable{ //comparaable是一个进行排序的类,
public int compareTo(Object obj){ //这comparable接口中必须实现的方法 当返回值>0时排前面,=0排中间 <0排后面
if(! obj instanceof MyBean)
throw new ClassCastException() //具体异常的名称,我要查jdk文档。
MyBean other = (MyBean) obj;
return age > other.age?1:age== other.age?0:-1;
}
}
class MyTreeSet {
private ArrayList datas = new ArrayList();
public void add(Object obj){ //调用方法者存入一个对象
for(int i=0;i<datas.size();i++){ 把数组中的所有元素进行迭代
if(obj.compareTo(datas.get(i) != 1){ //跟据上面定义的比较器进行比较两个对象
datas.add(i,obj);
}
}
}
}