A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ztwztw 中级黑马   /  2013-12-17 18:53  /  864 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class student implement comparable
{
private String name;
private int age;
student
{
this.name=s.name;
this.age=s.age;
}
public int compareTo(Object obj)/*为什么用obj类型,用student类型。如果用student类型下面就不用判                                                                        断了不是吗*/
{
if(!obj instranceof student)
    throw new RunableException();
Student s=(Student)obj;
if(this.age>s.age)
return 1;
if(this.age=s.age)
  return 0;
return -1;
}
public String getName()
{
return name;
}
public int getAge()
{
  return age;
}
}

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

1 个回复

倒序浏览
本帖最后由 谢文斌 于 2013-12-17 19:19 编辑

大哥,你这代码,好多单词错误,我改了半天= =占位编辑代码完毕:
  1. package Temp;

  2. import java.util.Iterator;
  3. import java.util.Set;
  4. import java.util.TreeSet;

  5. class TreeSetDemo
  6. {
  7.         public static void main(String[] args)
  8.         {
  9.                 Student s1 = new Student("heibai", 18);
  10.                 Student s2 = new Student("小李子", 22);
  11.                 Student s3 = new Student("小太监", 20);
  12.                 Set<Student> ts = new TreeSet();
  13.                 ts.add(s1);
  14.                 ts.add(s2);
  15.                 ts.add(s3);
  16.                
  17.                 Iterator<Student> it = ts.iterator();
  18.                 System.out.println("Name\tAge");
  19.                 while(it.hasNext())
  20.                 {
  21.                         Student s = it.next();
  22.                         System.out.println(s.getName()+"\t"+s.getAge());
  23.                 }
  24.         }
  25. }
  26. class Student implements Comparable<Student>//加泛型限定!!!啦啦啦
  27. {
  28.         private String name;
  29.         private int age;
  30.         Student(String name, int age)
  31.         {
  32.                 this.name = name;
  33.                 this.age = age;
  34.         }
  35.         public int compareTo(Student s)//当泛型 没有出现的时候,集合里可以装任意对象,所以这里要判断,出现泛型后,我们限定为Student类就可以了。
  36.         {
  37.                 if(this.age>s.age)
  38.                         return 1;
  39.                 else if(this.age==s.age)
  40.                         return 0;
  41.                 return -1;
  42.         }
  43.         public String getName()
  44.         {
  45.                 return name;
  46.         }
  47.         public int getAge()
  48.         {
  49.                 return age;
  50.         }
  51. }
复制代码
输出结果:
Name        Age
heibai        18
小太监        20
小李子        22

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马