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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© qwerty123321 中级黑马   /  2016-6-5 22:18  /  647 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

(1)定义一个学生类Student,包含属性:姓名(String name)、年龄(int age)
        (2)定义Map集合,用Student对象作为key,用字符串(此表示表示学生的住址)作为value
        (3)利用四种方式遍历Map集合中的内容,格式:key::value

3 个回复

倒序浏览
太长了,不想写
回复 使用道具 举报
public static void main(String[] args) {
                Map<Student, String> tempMap = new HashMap<>();
                tempMap.put(new Student("张三",23),"武汉汉口");
                tempMap.put(new Student("李四",24),"武汉武昌");
                tempMap.put(new Student("王五",25),"武汉汉阳");
                System.out.println("方法一");
                Iterator it = tempMap.entrySet().iterator();
                while (it.hasNext()) {
                        Map.Entry entry = (Map.Entry) it.next();
                        Object key = entry.getKey();
                        Object value = entry.getValue();
                        System.out.println(key + "::" + value);
                }
                System.out.println("");
                System.out.println("方法二");
                for (Map.Entry<Student, String> entry : tempMap.entrySet()) {
                        String key = entry.getKey().toString();
                        String value = entry.getValue().toString();
                        System.out.println(key + "::" + value);
                }
                System.out.println("");
                System.out.println("方法三");
                for (Iterator i = tempMap.keySet().iterator(); i.hasNext();) {
                        Object obj = i.next();
                        System.out.println( obj + "::" + tempMap.get(obj));
                }
                System.out.println("");
                System.out.println("方法四");
                for (Object o : tempMap.keySet()) {
                        System.out.println(o + "::" + tempMap.get(o));
                }
        }
}
class Student{
        private String name;
        private int age;
        public Student() {
                super();
                // TODO Auto-generated constructor stub
        }
        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 "Student [name=" + name + ", age=" + age + "]";
        }
       
}
回复 使用道具 举报
求赏点黑马币
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马