java map 扩展_java map扩展知识

/*

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);

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值