Java中的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<String, Integer> map = new HashMap<>();
// 添加鍵值對
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
// 遍歷Map
for (String key : map.keySet()) {
Integer value = map.get(key);
System.out.println("Key: " + key + ", Value: " + value);
}
Map<String, Integer> map = new HashMap<>();
// 添加鍵值對
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
// 遍歷Map
for (Integer value : map.values()) {
System.out.println("Value: " + value);
}
Map<String, Integer> map = new HashMap<>();
// 添加鍵值對
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
// 遍歷Map
map.forEach((key, value) -> System.out.println("Key: " + key + ", Value: " + value));
這些是常見的幾種遍歷Map的方式,根據實際需求選擇合適的方式進行遍歷。