HashMap遍历

Posted

tags:

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


import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

/**
* Created by Administrator on 2017/9/27.
*/
public class HH {
public static void main(String[] args) throws Exception{
HashMap hashMap = new HashMap();
hashMap.put(1,"qqq");
hashMap.put(2,"www");
Iterator iterator = hashMap.entrySet().iterator();
while (iterator.hasNext()){
Map.Entry entry = (Map.Entry) iterator.next();
Object key = entry.getKey();
Object value= entry.getValue();
System.out.println(key+"--"+value);
}
}
}

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

遍历 HashMap 的 5 种最佳方式

HashMap 的 7 种遍历方式与性能分析!(强烈推荐)

HashMap的遍历

HashMap集合类 5种最佳遍历方式

遍历 HashMap 的 5 种最佳方式,我不信你全知道!

Java HashMap 如何正确遍历并删除元素