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());
}
}
}
以上是关于HashMap系列:HashMap的遍历的主要内容,如果未能解决你的问题,请参考以下文章