黑马程序员技术交流社区
标题:
集合嵌套之HashMap嵌套HashMap
[打印本页]
作者:
continuer
时间:
2015-12-28 23:20
标题:
集合嵌套之HashMap嵌套HashMap
需求:
* 双元课堂有很多基础班
* 第88期基础班定义成一个双列集合,键是学生对象,值是学生的归属地
* 第99期基础班定义成一个双列集合,键是学生对象,值是学生的归属地
* 无论88期还是99期都是班级对象,所以为了便于统一管理,把这些班级对象添加到双元课堂集合中
class Demo_HashMap{
public static void main(Strin[] args){
HashMap<Student, String> hm88 = new HashMap<>();
hm88.put(new Student("蜘蛛精", 123), "盘丝洞");
hm88.put(new Student("女儿国国王", 24), "女儿国");
hm88.put(new Student("大鹏鸟", 532), "灵山");
HashMap<Student, String> hm99 = new HashMap<>();
hm99.put(new Student("唐僧", 23), "大唐");
hm99.put(new Student("孙悟空",587), "花果山");
hm99.put(new Student("猪八戒",516), "高老庄");
hm99.put(new Student("沙和尚",564), "流沙河");
HashMap<HashMap<Student, String>, String> hm = new HashMap<>();
hm.put(hm88, "第88期基础班");
hm.put(hm99, "第99期基础班");
for(HashMap<Student , String> h : hm.keySet() ){
String value = hm.get(h);
for(Student key , h.keySet() ){
String value2 =h.get(key);
System.out.println(value+"="+ value + "=" + value2)
}
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2