HashMap系列:HashMap的遍历

Posted zhangjin1120

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HashMap系列:HashMap的遍历相关的知识,希望对你有一定的参考价值。

  • 后端给了一个完整的List,List中有不同类型的元素,需要用HashMap统计不同元素的数量。
public class MapLoopTest {
    public static void main(String[] args) {
        HashMap<String, Integer> map = new HashMap<>();
        map.put("a", 3);
        map.put("b", 4);
        for (Map.Entry<String, Integer> entry : map.entrySet()) {
            System.out.println(entry.getKey() + " " + entry.getValue());
        }
    }
}

在这里插入图片描述
参考:Java中遍历HashMap的5种方式

以上是关于HashMap系列:HashMap的遍历的主要内容,如果未能解决你的问题,请参考以下文章

Java8系列重新认识HashMap

Java8系列之重新认识HashMap

源代码系列01——HashMap源码分析

Java8系列之重新认识HashMap(转)

#yyds干货盘点# HashMap的4种遍历方式

包含不同片段的HashMap(或ArrayList)