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();
}
上面的方式可以变化为for循环的形式:
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);
}
上面的方式也可以变化为for循环的形式:
Map<String, String> map = new HashMap<String, String>();
for (String key : map.keySet()) {
map.get(key);
}
(1)HashMap的循环,如果既需要key也需要value,直接用
Map<String, String> map = new HashMap<String, String>();
for (Entry<String, String> entry : map.entrySet()) {
entry.getKey();
entry.getValue();
}
(2)如果只是遍历key而无需value的话,可以直接用
Map<String, String> map = new HashMap<String, String>();
for (String key : map.keySet()) {
// key process
}
参考:
HashMap两种遍历方式的深入研究:http://swiftlet.net/archives/1259