Java的Map可以使用以下幾種方式進(jìn)行遍歷:
Map<String, Integer> map = new HashMap<>();
// 添加鍵值對(duì)
map.put("A", 1);
map.put("B", 2);
// 遍歷
for (Map.Entry<String, Integer> entry : map.entrySet()) {
String key = entry.getKey();
Integer value = entry.getValue();
// 打印鍵值對(duì)
System.out.println(key + " : " + value);
}
Map<String, Integer> map = new HashMap<>();
// 添加鍵值對(duì)
map.put("A", 1);
map.put("B", 2);
// 遍歷
for (String key : map.keySet()) {
Integer value = map.get(key);
// 打印鍵值對(duì)
System.out.println(key + " : " + value);
}
Map<String, Integer> map = new HashMap<>();
// 添加鍵值對(duì)
map.put("A", 1);
map.put("B", 2);
// 遍歷
for (Integer value : map.values()) {
// 打印值
System.out.println(value);
}
Map<String, Integer> map = new HashMap<>();
// 添加鍵值對(duì)
map.put("A", 1);
map.put("B", 2);
// 遍歷
map.forEach((key, value) -> {
// 打印鍵值對(duì)
System.out.println(key + " : " + value);
});