码迷,mamicode.com
首页 > 其他好文 > 详细

【HashMap 嵌套 HashMap】

时间:2019-01-31 12:54:44      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   main   mail   rip   print   .com   package   nbsp   email   

package com.yjf.esupplier.common.test;

import java.util.HashMap;
import java.util.Set;

/**
 * @author shusheng
 * @description HashMap 嵌套 HashMap
 * @Email shusheng@yiji.com
 * @date 2018/12/18 14:46
 */
public class HashMapDemo2 {

    public static void main(String[] args) {
        HashMap<String, HashMap<String, Integer>> doubleMap = new HashMap<String, HashMap<String, Integer>>();

        // 创建基础班集合对象
        HashMap<String, Integer> jcMap = new HashMap<String, Integer>();
        // 添加元素
        jcMap.put("陈玉楼", 20);
        jcMap.put("高跃", 22);
        // 把基础班添加到大集合
        doubleMap.put("jc", jcMap);

        // 创建就业班集合对象
        HashMap<String, Integer> jyMap = new HashMap<String, Integer>();
        // 添加元素
        jyMap.put("李杰", 21);
        jyMap.put("曹石磊", 23);
        // 把基础班添加到大集合
        doubleMap.put("jy", jyMap);

        //遍历集合
        Set<String> oneMapSet = doubleMap.keySet();
        for (String mapKey : oneMapSet) {
            System.out.println(mapKey);
            HashMap<String, Integer> mapValue = doubleMap.get(mapKey);
            Set<String> twoMapValueSet = mapValue.keySet();
            for (String mapValueKey : twoMapValueSet) {
                Integer mapValueValue = mapValue.get(mapValueKey);
                System.out.println("\t" + mapValueKey + "---" + mapValueValue);
            }
        }
    }

}

 

【HashMap 嵌套 HashMap】

标签:style   main   mail   rip   print   .com   package   nbsp   email   

原文地址:https://www.cnblogs.com/zuixinxian/p/10341204.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!