可以通过以下方式遍历Map的entry:
Mapmap = new HashMap<>(); map.put("A", 1); map.put("B", 2); map.put("C", 3); for (Map.Entry entry : map.entrySet()) { String key = entry.getKey(); Integer value = https://www.yisu.com/ask/entry.getValue();"Key: " + key + ", Value: " + value); }
在上面的例子中,我们首先通过entrySet()
方法获取Map的entry集合,然后使用增强型for循环遍历每个entry,最后可以通过getKey()
和getValue()
方法获取每个entry的键和值。