大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
废话不多说,直接上代码块!
import java.util.HashMap;
import java.util.Map;
/** * Map集合嵌套Map集合遍历 * Created by aongi on 2017/4/28. * Version 1.0 */
public class MapOf {
public static void bl(HashMap<String, HashMap<String,String>> jd){
for (Map.Entry<String, HashMap<String, String>> me : jd.entrySet()) {
String classNameKey = me.getKey();
HashMap<String, String> numNameMapValue = me.getValue();
for (Map.Entry<String, String> nameMapEntry : numNameMapValue.entrySet()) {
String numKey = nameMapEntry.getKey();
String nameValue = nameMapEntry.getValue();
System.out.println(classNameKey + ".." + numKey + ".." + nameValue);
}
}
}
public static void main(String[] args) {
//定义服务员集合
HashMap<String, String> fuy = new HashMap<String, String>();
//定义厨师集合
HashMap<String, String> cs = new HashMap<String, String>();
//向酒店集合中,存储服务员信息
fuy.put("服务员001", "小王");
fuy.put("服务员002", "小李");
cs.put("厨师001", "小张");
cs.put("厨师002", "小龙");
//定义酒店集合容器,键是员工类型,值是两种员工各自的集合容器
HashMap<String, HashMap<String,String>> jd = new HashMap<String, HashMap<String,String>>();
jd.put("服务员", fuy);
jd.put("厨师", cs);
bl(jd);
}
}
还有一种简单的遍历
public static void bl(HashMap<String, HashMap<String,String>> jd){
for(String a:jd.keySet()){
HashMap<String,String> map =jd.get(a);
for(String s:map.keySet()){
String s1= map.get(s);
System.out.println(a+" "+s+" "+s1);
}
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/192805.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...