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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 谭荣强 高级黑马   /  2014-3-6 15:02  /  624 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 何伟超 于 2014-3-6 19:28 编辑

照着毕老师的代码抄了一遍,但运行时就只能添加一个元素。而且这一个也不对   
import java.util.*;
class Student implements Comparable
{
        private String name;
        private int age;
        Student(String name,int a)
        {
                this.name=name;
                this.age=age;
        }

        public int compareTo(Object obj)//此方法不能声明,因为是覆盖的方法。
        {
                if (!(obj instanceof Student))
                {
                        throw new RuntimeException("不是学生对象");
                }

                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;
        }
}
class day1501
{
        public static void main(String[] args)
        {
                 TreeSet t = new TreeSet();
                 t.add(new Student("lisi1",20));
                 t.add(new Student("lisi2",30));
                 t.add(new Student("lisi3",41));
                  t.add(new Student("lisi4",24));
                 Iterator it = t.iterator();
                 while (it.hasNext())
                 {
                         Student stu = (Student)it.next();
                         System.out.println(stu.getName()+"..."+stu.getAge());
                 }
        }
}

评分

参与人数 1技术分 +1 收起 理由
何伟超 + 1

查看全部评分

1 个回复

倒序浏览
找到原因了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马