HashMap遍历

Posted 媛猿

tags:

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

Map<Integer, Integer> map = new HashMap<Integer, Integer>();

//iterating over keys only
for (Integer key : map.keySet()) {
    System.out.println("Key = " + key);
}

//iterating over values only
for (Integer value : map.values()) {
    System.out.println("Value = " + value);
}

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

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

Java HashMap遍历实践

代码优化:遍历查询数据库代码优化

代码优化:遍历查询数据库代码优化

HashMap和List遍历方法总结及如何遍历删除

Scala HashMap遍历的方法