可以使用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(),然后分别打印每个键值对的键和值。