/*
map扩展知识。
map集合被使用是因为具备映射关系。
"yureban" Student("01" "zhangsan");
"yureban" Student("02" "lisi");
"jiuyeban" "01" "wangwu";
"jiuyeban" "02" "zhaoliu";
一个学校有多个教室。每一个教室都有名称。
*/
import java.util.*;
class Student
{
private String id;
private String name;
Student(String id,String name)
{
this.id = id;
this.name = name;
}
public String toString()
{
return id+":::"+name;
}
}
class MapTest7
{
public static void main(String[] args)
{
demo2();
}
public static void demo2()
{
HashMap> czbk = new HashMap>();
List yure = new ArrayList();
List jiuye = new ArrayList();
czbk.put("yureban", yure);
czbk.put("jiuyeban", jiuye);
yure.add(new Student("01","zhagnsa"));
yure.add(new Student("04","wangwu"));
jiuye.add(new Student("01","zhouqi"));
jiuye.add(new Student("02","zhaoli"));
for(Iterator it = czbk.keySet().iterator(); it.hasNext(); )
{
String roomName = it.next();
List room = czbk.get(roomName);
System.out.println(roomName);
getInfos(room);
}
}
public static void getInfos(List list)
{
for(Iterator it = list.iterator(); it.hasNext(); )
{
Student stu = it.next();
System.out.println(stu);
}
}
public static void demo()
{
HashMap> czbk = new HashMap>();
HashMap yure = new HashMap();
HashMap jiuye = new HashMap();
czbk.put("yureban", yure);
czbk.put("jiuyeban", jiuye);
yure.put("01","zhagnsan");
yure.put("02","lisi");
jiuye.put("01","zhaoliu");
jiuye.put("02","wangwu");
for(Iterator it = czbk.keySet().iterator(); it.hasNext(); )
{
String roomName = it.next();
HashMap room = czbk.get(roomName);
System.out.println(roomName);
getStudentInfo(room);
}
//getStudentInfo(jiuye);
}
public static void getStudentInfo(HashMap roomMap)
{
for(Iterator it = roomMap.keySet().iterator(); it.hasNext(); )
{
String id = it.next();
String name = roomMap.get(id);
System.out.println(id+":"+name);
}
}
}
2193

被折叠的 条评论
为什么被折叠?



