Map.Entry遍历Map

Posted 夏日的微笑

tags:

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

Map.entry是Java中的一个接口。每一个Map.entry代表一个map对象。

可以通过

Map是java中的接口,Map.Entry是Map的一个内部接口,它表示map中的一个实体(及一个key-value对)。

map提供了一些方法如entrySet()返回值entry实体的set集合 Set<Map.Entry<K,V>>;keySet()返回值key的set集合 Set<K>

常用用来遍历map中的key和遍历map中的实体的方法为:

Map<String,Integer> testMap = new HashMap<String,Integer>();
testMap.put("a", 1);
testMap.put("b", 2);

//遍历map集合中的key
for(String e :testMap.keySet()){
System.out.println(e);
}

//遍历map集合中的entry实体(key-value)

for(Map.Entry<String,Integer> entry :testMap.entrySet()){
System.out.println(entry.getKey()+ " " +entry.getValue());
}

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

java中map的常用遍历方法

遍历map和删除map中的一个entry

另一种遍历Map的方式: Map.Entry 和 Map.entrySet()

另一种遍历Map的方式: Map.Entry 和 Map.entrySet()

[转]另一种遍历Map的方式: Map.Entry 和 Map.entrySet()

Thymeleaf遍历Map