HashMap是Java中的一种数据结构,用于存储键值对(Key-Value)的映射关系。下面是一些使用HashMap的常见操作:
HashMap<String, Integer> hashMap = new HashMap<>();
hashMap.put("key1", 1);
hashMap.put("key2", 2);
int value = hashMap.get("key1"); // 获取键"key1"对应的值
boolean containsKey = hashMap.containsKey("key1"); // 判断是否包含键"key1"
boolean containsValue = hashMap.containsValue(1); // 判断是否包含值1
hashMap.remove("key2"); // 移除键"key2"对应的键值对
for (Map.Entry<String, Integer> entry : hashMap.entrySet()) {
String key = entry.getKey();
int value = entry.getValue();
System.out.println(key + ": " + value);
}
注意:HashMap中的键是唯一的,如果添加的键已经存在,则新的值将覆盖旧的值。