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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. import java.util.*;
  2. class Student implements Comparable<Student>
  3. {
  4.         private String name;
  5.         private int age;
  6.         Student(String name, int age)
  7.         {
  8.                 this.name = name;
  9.                 this.age = age;

  10.         }
  11.         public int compareTo(Student s)
  12.         {
  13.                 int num = new Integer(this.age).compareTo(new Integer(s.age));
  14.                 if(num==0)
  15.                         return this.name.compareTo(s.name);
  16.                 return num;
  17.         }
  18.         public int hashCode()
  19.         {
  20.                 return name.hashCode()+age*34;

  21.         }
  22.         public boolean equals(Object obj)
  23.         {
  24.                 if(!(obj instanceof Student))
  25.                         throw new ClassCastException("类型不匹配");
  26.                 Student s = (Student)obj;
  27.                 return this.name.equals(s.name) && this.age==s.age;
  28.         }

  29.         public String getName()
  30.         {
  31.                 return name;
  32.         }
  33.         public int getAge()
  34.         {
  35.                 return age;
  36.        
  37.         }
  38.         public String toSting()
  39.         {
  40.                 return name+":"+ age;
  41.         }
  42. }
  43. class  MapTest
  44. {
  45.         public static void main(String[] args)
  46.         {
  47.                 HashMap<Student,String> hm = new HashMap<Student, String>();
  48.                  
  49.                  hm.put(new Student("lisi1",21),"beijing");
  50.                  hm.put(new Student("lisi2",22),"nanjing");
  51.                  hm.put(new Student("lisi3",23),"nanjing");
  52.                  hm.put(new Student("lisi4",24),"wuhan");
  53.                 //第一种取出方式
  54.                 Set<Student> keySet = hm.keySet();
  55.                 Iterator<Student> it = keySet.iterator();
  56.                 while(it.hasNext())
  57.                 {
  58.                         Student stu = it.next();
  59.                         String addr = hm.get(stu);
  60.                         System.out.println(stu+".."+addr);

  61.                 }


  62.                 /*        //第二种取出方式 entrySet
  63.                         Set<Map.Entry<Student,String>> entrySet = hm.entrySet();
  64.                         Iterator<Map.Entry<Student,String>> iter = entrySet.iterator();

  65.                         while (it.hasNext())
  66.                         {
  67.                                 Map.Entry<Student,String> me = iter.next();
  68.                                 Student stu = me.getKey();
  69.                                 String addr = me.getValue();
  70.                                 System.out.println(stu+"....."+addr);

  71.                         }*/
  72.                
  73.         }
  74. }
  75. [img]捕获.PNG1.PN[/img]
复制代码

2 个回复

倒序浏览
Student里的toString()方法拼错了
回复 使用道具 举报
不能直接打印人名,因为键里面是两个参数,计算机又不知道你要打印哪个,因此你要指定,比如stu.getName();
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马