黑马程序员技术交流社区

标题: 集合嵌套,,,,,,刚学完.....自己刚敲了一遍 [打印本页]

作者: 韩凯5354    时间: 2015-9-16 20:57
标题: 集合嵌套,,,,,,刚学完.....自己刚敲了一遍
package com.heima.homework;

import java.util.HashMap;

import com.heima.work.Student;

public class Test5 {

        /**
         * 4:集合的嵌套遍历(理解)
         */
        public static void main(String[] args) {
                HashMap<Student, String> map = new HashMap<>();
                map.put(new Student("张三",23), "北京");
                map.put(new Student("李四",24), "上海");
                map.put(new Student("王五",25), "广州");
                map.put(new Student("赵六",26), "深圳");
               
                HashMap<Student, String> map1 = new HashMap<>();
                map1.put(new Student("赵四",40),"沈阳");
                map1.put(new Student("刘能",50),"长春");
                map1.put(new Student("小沈阳",30),"铁岭");
                map1.put(new Student("宋小宝",35),"哈尔滨");
               
                HashMap<HashMap<Student, String>,String> hm = new HashMap<>();
                hm.put(map, "黑马基础班88期");
                hm.put(map1, "黑马基础班99期");
               
                for (HashMap<Student, String> h : hm.keySet()) {
                        String str = hm.get(h);
                        for (Student stu : h.keySet()) {
                                String str2 = h.get(stu);
                                System.out.println(stu + str2 + str);
                        }
                }
               
        }

}



作者: 1406046710    时间: 2015-9-17 00:29
学习到了 不错
作者: 韩凯5354    时间: 2015-9-18 14:44
1406046710 发表于 2015-9-17 00:29
学习到了 不错

学的还可以




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2