遍历 HashMap

Posted xmsx

tags:

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

使用 entrySet:

Map map = new HashMap();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext()) {
    Map.Entry entry = (Map.Entry)iter.next();
    Object key = entry.getKey();
    Object val = entry.getValue();
}

//or
Map<String,String> map = new HashMap<String,String>();
for (Entry<String,String> entry : map.entrySet()) {
    entry.getKey();
    entry.getValue();
}

使用 keySet:

Map map = new HashMap();
Iterator iter = map.keySet().iterator();
while (iter.hasNext()) {
    Object key = iter.next();
    Object val = map.get(key);
}

//or
Map<String, String> map = new HashMap<String, String>();
for (String key : map.keySet()) {
    map.get(key);
}

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

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

Java HashMap遍历实践

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

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

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

Scala HashMap遍历的方法