遍历Map的两种方法
Posted 孜然风味
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历Map的两种方法相关的知识,希望对你有一定的参考价值。
MAP集合遍历的两种方法
1、使用keyset()获得Map中的的key ,然后使用get方法获得这个key对应的value;
示例:Map<String,Integer> map = new HashMap<String,Integer>();
map.put("张三",15);
map.put("李四",16);
map.put("王五",17);
Set ss = map.keyset();
Iterator<String> it = new ss.iterator();
while (it.Hashnext()){
String str = it.next();
int va = str.get();
System.out.println(str + va);
}
2、使用entrySet获得Map.Entry<K,V>类型,然后Entry有自己的getkey、getvalue方法
示例:
Map<String,Integer> map = new HashMap<String,Integer>();
map.put("张三",15);
map.put("李四",16);
map.put("王五",17);
Set<Map.Entry<String,Integer>> ss = map.entrySet();
Iterator<Map.Entry<String,Integer>> it = new ss.iterator();
while (it.Hashnext()){
Map.Entry<String,Integer> str = it.next();
String key = str.getkey();
int va = str.getvalue();
System.out.println(key + va);
}
以上是关于遍历Map的两种方法的主要内容,如果未能解决你的问题,请参考以下文章