在Java中,Map接口的遍历有几种常见的方式:
- 使用Iterator遍历Map的键值对:
Mapmap = new HashMap<>(); map.put("A", 1); map.put("B", 2); map.put("C", 3); Iterator > iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry entry = iterator.next(); String key = entry.getKey(); Integer value = https://www.yisu.com/ask/entry.getValue();": " + value); }
- 使用forEach遍历Map的键值对:
Mapmap = new HashMap<>(); map.put("A", 1); map.put("B", 2); map.put("C", 3); map.forEach((key, value) -> { System.out.println(key + ": " + value); });
- 使用Stream API遍历Map的键值对:
Mapmap = new HashMap<>(); map.put("A", 1); map.put("B", 2); map.put("C", 3); map.entrySet().stream().forEach(entry -> { String key = entry.getKey(); Integer value = https://www.yisu.com/ask/entry.getValue();": " + value); });
以上是Java中常见的Map遍历方式,新特性主要是Stream API的引入,使得遍历Map变得更加简洁和灵活。