共计 561 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用迭代器遍历 Map 的方法如下:
- 使用 Map 的 entrySet() 方法,获取 Map 中所有的键值对(Entry)集合。
- 使用 Iterator 迭代器遍历 Entry 集合,可以使用 hasNext() 方法判断是否还有下一个元素,使用 next() 方法获取下一个元素。
- 在迭代器的循环中,可以使用 getKey() 方法获取当前 Entry 的键,使用 getValue() 方法获取当前 Entry 的值。
以下是一个示例代码:
Map map = new HashMap();
map.put(1, "One");
map.put(2, "Two");
Iterator<Map.Entry> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {Map.Entry entry = iterator.next();
Integer key = entry.getKey();
String value = entry.getValue();
System.out.println("Key:" + key + ", Value:" + value);
}
上述代码中,通过 entrySet() 方法获取 Map 中所有的键值对集合,然后使用 Iterator 迭代器遍历集合,逐个获取键和值,并输出到控制台。
丸趣 TV 网 – 提供最优质的资源集合!
正文完