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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 赵国刚 中级黑马   /  2013-8-13 12:32  /  1014 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

代码如下:

import java.util.*;

class Student implements Comparable<Student>
{
        private String name;

        private int  age;

        Student(String name, int age)
        {
                this.name=name;
                this.age=age;
        }
    public int hashCode()
        {
        return name.hashCode()+age*35;
        }

        public boolean equals (Object obj)
        {
                if (!(obj instanceof Student))
                        
                   throw new ClassCastException("类型不匹配");

                Student s=(Student)obj;

                return this.name.equals(s.name)&&this.age==s.age;
        }

        public int compareTo(Student s)
        {
        int num= new Integer(this.age).compareTo(new Integer(s.age));

                if (num==0)
               
                return this.name.compareTo(s.name);

                return num;
        
        }

        public String getName()
        {
                return name;
        }

        public int getAge()
        {
                return age;
        }

        public String toString()
        {
                return name+"..."+age;
        }

}
class  MapEntryDemo
{
        public static void main(String[] args)
        {
                HashMap<Student,String> stu= new HashMap<Student,String>();

                stu.put(new Student("小遥",8),"三年级");
                stu.put(new Student("小豪",6),"一年级");
                stu.put(new Student("小程",2),"家里蹲");
                stu.put(new Student("小明",9),"六年级");
                stu.put(new Student("小露",12),"七年级");

                Set<Student> keyset=stu.keySet();

                Iterator<Student> it =stu.iterator();

                while(it.hasNext())
                {
                        Student key=it.next();

                        String  grate=stu.get(key);
                        
                        System.out.println(grate+key);
                }

                Set<Map.Entry<Student,String>> entryset=stu.entrySet();

                Iterator<Map.Entry<Student,String>> iter=entryset.iterator();

                while(iter.hasNext())
                {
                        Map.Entry<Student,String> me=iter.next();
                        System.out.println(me.getKey()+ me.getValue());
                }

        }
}
编译不通过啊。。

评分

参与人数 1技术分 +1 收起 理由
神之梦 + 1

查看全部评分

2 个回复

倒序浏览
  Iterator<Student> it =stu.iterator(); 这句有问题  根据你写的代码 应该是Iterator<Student> it =keyset.iterator();  这样应该就可以编译过了 set 里面有迭代方法,应该是你疏忽写错了吧

评分

参与人数 1技术分 +1 收起 理由
神之梦 + 1

查看全部评分

回复 使用道具 举报
⑷嚸V恱 发表于 2013-8-13 13:05
Iterator it =stu.iterator(); 这句有问题  根据你写的代码 应该是Iterator it =keyset.iterator();  这 ...

我去,对啊是啊,谢谢啊没注意到太粗心了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马