首页 > 其他 > 详细

33.Map

时间:2020-06-19 23:35:45      阅读:72      评论:0      收藏:0      [点我收藏+]

1.概述

技术分享图片

 

 

 技术分享图片

 

2.Map的获取功能

技术分享图片

 

 

 3.遍历

  方式1:

        HashMap<String, String> hashMap = new HashMap<>();
        hashMap.put("001","张飞");
        hashMap.put("002","关于");
        hashMap.put("003","赵云");
        Set<String> stringSet = hashMap.keySet();
        for (String key:stringSet){
            System.out.println(key+":"+hashMap.get(key));
        }

  方式2:

      技术分享图片

        Set<Map.Entry<String, String>> entries = hashMap.entrySet();
        for (Map.Entry<String, String> m:entries){
            System.out.println(m.getKey()+":"+m.getValue());
        }

 

33.Map

原文:https://www.cnblogs.com/luzhanshi/p/13166662.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!