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遍历的主要内容,如果未能解决你的问题,请参考以下文章