黑马程序员技术交流社区

标题: 功能齐全的学生类 [打印本页]

作者: liyeming    时间: 2016-1-21 22:19
标题: 功能齐全的学生类

public class Student implements Comparable<Student>{
        private String name;
        private int age;
        public Student() {
                super();
               
        }
        public Student(String name, int age) {
                super();
                this.name = name;
                this.age = age;
        }
        public String getName() {
                return name;
        }
        public void setName(String name) {
                this.name = name;
        }
        public int getAge() {
                return age;
        }
        public void setAge(int age) {
                this.age = age;
        }
        @Override
        public String toString() {
                return name + "  =   "+ age;
        }
        @Override
        public int hashCode() {
                final int prime = 31;
                int result = 1;
                result = prime * result + age;
                result = prime * result + ((name == null) ? 0 : name.hashCode());
                return result;
        }
        @Override
        public boolean equals(Object obj) {
                if (this == obj)
                        return true;
                if (obj == null)
                        return false;
                if (getClass() != obj.getClass())
                        return false;
                Student other = (Student) obj;
                if (age != other.age)
                        return false;
                if (name == null) {
                        if (other.name != null)
                                return false;
                } else if (!name.equals(other.name))
                        return false;
                return true;
        }
        public int compareTo(Student o) {
                int i = name.compareTo(o.getName());
                return i  == 0? age - o.getAge() : i;
        }
       
}



作者: 悠悠天下    时间: 2016-1-21 22:49
厉害 学习了
作者: liyeming    时间: 2016-1-21 23:20
加油吧!
作者: 我爱睡觉    时间: 2016-1-22 13:52
这个可以有,需要的 留存
作者: 愿随风丶飘雪    时间: 2016-1-22 15:41
没有定义方法啊




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2