遍历Map的方法
Posted Lavender
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历Map的方法相关的知识,希望对你有一定的参考价值。
1、使用 entrySet()
entrySet() --> 官方推荐 将Map转换成Map.Entry对象的Set集合 |
Set entrys = map.entrySet();
Iterator it = entrys.iterator();
while(it.hasNext()){
//Map 的 内部类
Entry entry = (Entry) it.next();
System.out.println(entry.getKey()+" = "+entry.getValue());
}
2、使用 keySet()
keySet() 先获得Map中所有的key的 set 集合 |
Set keys = map.keySet();
Iterator it = keys.iterator();
while(it.hasNext()){
String key = (String) it.next();
System.out.println(key+" = "+map.get(key));
}
注意:这里面涉及到泛型的使用,用Eclpise编程的时候会出现警告,只要按照你的需要添加泛型就可以了
以上是关于遍历Map的方法的主要内容,如果未能解决你的问题,请参考以下文章
[转]另一种遍历Map的方式: Map.Entry 和 Map.entrySet()
另一种遍历Map的方式: Map.Entry 和 Map.entrySet()