在Java中可以使用foreach循環遍歷Map集合,示例代碼如下:
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
// 遍歷Map集合的鍵值對
for (Map.Entry<String, Integer> entry : map.entrySet()) {
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println("Key: " + key + ", Value: " + value);
}
// 遍歷Map集合的鍵
for (String key : map.keySet()) {
System.out.println("Key: " + key);
}
// 遍歷Map集合的值
for (Integer value : map.values()) {
System.out.println("Value: " + value);
}
可以根據需要選擇遍歷Map集合的鍵值對、鍵或者值進行操作。