- import java.util.*;
- /*
- 需求:往TreeSet集合中存储自定义对象学生。
- 想按照学生的年龄进行排序。
- */
- class TreeSetDemo
- {
- public static void main(String[] args)
- {
- TreeSet ts = new TreeSet();
- ts.add(new Student("lisi02",22));
- ts.add(new Student("lisi0072",29));
- ts.add(new Student("lisi09",29));
- //ts.add(new Student("lisi01",40));
- Iterator it = ts.iterator();
- while(it.hasNext()){
- Student stu = (Student)it.next();
- System.out.println(stu.getName()+"..."+stu.getAge());
- }
- }
- }
- class Student implements Comparable//该接口强制让学生具备比较性
- {
- private String name;
- private int age;
- Student(String name,int age){
- this.name = name;
- this.age = age;
- }
- public String getName(){
- return name;
- }
- public int getAge(){
- return age;
- }
- public int compareTo(Object obj){
- if(!(obj instanceof Student))
- throw new RuntimeException("不是学生对象!");
- Student s = (Student)obj;
- System.out.println(this.name+"..compareto.."+s.name);
- if(this.age>s.age)
- return 1;
- if(this.age==s.age){
- return <font color="#ff0000">this.name.compareTo(s.name);</font>
- }
- return -1;
- }
- }
复制代码 万恶的验证码,提问个问题累死我了。红色的地方是小弟不懂得地方。为什么要用this和s来调用。求解释、
[code]import java.util.*;
/*
需求:往TreeSet集合中存储自定义对象学生。
想按照学生的年龄进行排序。
*/
class TreeSetDemo
{
|