遍历HashMap集合中的元素可以使用以下方法:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);
// 使用entrySet()方法遍历HashMap
for(Map.Entry<String, Integer> entry : hashMap.entrySet()) {
System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue());
}
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);
// 使用keySet()方法遍历HashMap
for(String key : hashMap.keySet()) {
Integer value = hashMap.get(key);
System.out.println("Key: " + key + ", Value: " + value);
}
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);
// 使用forEach()方法遍历HashMap
hashMap.forEach((key, value) -> {
System.out.println("Key: " + key + ", Value: " + value);
});