本帖最后由 波-wang 于 2014-8-21 16:55 编辑
- /*
- 每一个学生都有对应的归属地
- 学生Student 地址String
- 创建Map集合将学生作为键,地址作为值存入集合
- 学生属性姓名 年龄
- 同姓名同年龄为同一个学生
- */
- class Student implements comparable<Student>
- {
- private String name;
- private int age;
- public Student(String name,int age)
- {//构造函数,在初始化对象的时候用
- this.name=name;
- this.age=age;
- }
- public String getName()
- {
- return this.name;
- }
- public void setName(String name)
- {
- this.name=name;
- }
- public int getAge()
- {
- return this.age;
- }
- public void setAge(int age)
- {
- this.age=age;
- }
-
- public int compareTo(Student s)<Student>
- {
- int num=new Integer(this.age).compareTo(new Integer(s.age));
- if (num==0)
- {
- return this.name.compareTo(s.name);
- return num;
- }
- }
- public boolean equals(Object obj)
- {
- if (!(obj instanceof Student))
- {
- throw new RuntimeException("类型不匹配");
- }
- Student s=(Student)obj;
- return this.name.equals(s.name)&&this.age==s.age;
- }
- public int hashCode()
- {
- return name.hashCode()+age*39;
- }
- }
- class MapTest
- {
- public static void main(String[] args)
- {
- HashMap<Stusent,String> hm=new HashMap<Student,String>();//初始化一个HashMap()对象,利用的是API自带的构造函数
复制代码
|