java如何打印map所有的键值对

avatar
作者
筋斗云
阅读量:0

可以使用foreach循环遍历Map的entrySet(),然后打印每个键值对的键和值。以下是一个示例代码:

import java.util.Map;  public class Main {     public static void main(String[] args) {         Map<String, Integer> map = Map.of("A", 1, "B", 2, "C", 3);          for (Map.Entry<String, Integer> entry : map.entrySet()) {             System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue());         }     } } 

在上面的示例中,我们创建一个包含键值对的Map,并使用foreach循环遍历Map的entrySet(),然后分别打印每个键值对的键和值。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!