Java 中多种循环 Map 的方式详解
在Java中遍历Map的方式主要有四种:
- 使用for-each循环
- 使用Iterator
- 使用entrySet
- 使用Java 8 Stream API
下面是每种方式的示例代码:
- 使用for-each循环:
Map<String, Integer> map = new HashMap<>();
map.put("one", 1);
map.put("two", 2);
map.put("three", 3);
for (Map.Entry<String, Integer> entry : map.entrySet()) {
System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}
- 使用Iterator:
Map<String, Integer> map = new HashMap<>();
map.put("one", 1);
map.put("two", 2);
map.put("three", 3);
Iterator<Map.Entry<String, Integer>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, Integer> entry = iterator.next();
System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}
- 使用entrySet:
Map<String, Integer> map = new HashMap<>();
map.put("one", 1);
map.put("two", 2);
map.put("three", 3);
for (String key : map.keySet()) {
System.out.println("Key = " + key + ", Value = " + map.get(key));
}
- 使用Java 8 Stream API:
Map<String, Integer> map = new HashMap<>();
map.put("one", 1);
map.put("two", 2);
map.put("three", 3);
map.forEach((key, value) -> System.out.println("Key = " + key + ", Value = " + value));
以上四种方式都可以用来遍历Java中的Map,但是在实际应用中,根据具体情况选择最合适的方式。例如,如果需要同时获取键和值,使用for-each循环和Java 8 Stream API是最直接的;如果需要在遍历过程中对Map做修改,应该使用Iterator。
评论已关闭