HashMap四种遍历方式

Posted mrpeng2333

tags:

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

  • for each map.entrySet()
Map<String, String> map = new HashMap<String, String>();
for (Entry<String, String> entry : map.entrySet()) {
    entry.getKey();
    entry.getValue();
}
  • 显示调用map.entrySet()的集合迭代器
Iterator<Map.Entry<String, String>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
    Map.Entry<String, String> entry = iterator.next();
    entry.getKey();
    entry.getValue();
}
  • for each map.keySet(),再调用get获取
Map<String, String> map = new HashMap<String, String>();
for (String key : map.keySet()) {
    map.get(key);
}
  • for each map.entrySet(),用临时变量保存map.entrySet()
Set<Entry<String, String>> entrySet = map.entrySet();
for (Entry<String, String> entry : entrySet) {
    entry.getKey();
    entry.getValue();
}

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

Map集合的四种常用遍历方式整理

HashMap循环遍历方式及其性能对比

Map集合的四种遍历方式

map的四种遍历方式

遍历Map的四种方式

Map集合的四种遍历方式