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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ccyznhy 中级黑马   /  2013-8-22 22:55  /  789 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 黄兴旺 于 2013-8-25 16:42 编辑

public class MapTest {

        /**
         * @param args
         */
        public static void main(String[] args) {
                // TODO Auto-generated method stub
                //提示此处存在问题?HashMap类找不到
               Map<Student,String> hm=new HashMap<Student,String>();
                hm.put(new Student("zhangsan",11),"北京");
                hm.put(new Student("lisi",12),"天津");
                hm.put(new Student("lisi",12),"武汉");
                hm.put(new Student("wangwu",13),"上海");
                hm.put(new Student("zhaoliu",14),"重庆");
                //System.out.println(hm.get("北京"));
                Set<Map.Entry<Student,String>> set=hm.entrySet();
                Iterator<Map.Entry<Student,String>> it=set.iterator();
                while(it.hasNext()){
                        Map.Entry<Student,String> me=it.next();
                        Student s1=me.getKey();
                        String s2=me.getValue();
                        //System.out.println(s1);
                        System.out.println(s1+"==="+s2.toString());
                }
        }

}
class Student implements Comparable<Student>{
        private String name;
        private int age;
        Student(String name,int age){
                this.name=name;
                this.age=age;
        }
        public String getName(){
                return name;
        }
        public int getAge(){
                return age;
        }
        public String toString(){
                return name+"||"+age;
        }
        public int hashCode(){
                return 33;
        }
        public boolean equals(Student s){
                return s.getName()==s.getName()&&s.getAge()==s.getAge();
        }
        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;
        }
}

评分

参与人数 1技术分 +1 收起 理由
EYE_SEE_YOU + 1

查看全部评分

1 个回复

倒序浏览
本帖最后由 一个铃,一颗珠 于 2013-8-22 23:32 编辑

把包导进去
import java.util.*;
导进后就不报错了,可以运行出来。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马