溫馨提示×

hashmap如何判斷key存不存在

小億
258
2024-02-19 16:04:30
欄目: 編程語言

在HashMap中,可以使用containsKey()方法來判斷指定的key是否存在于HashMap中。如果存在,則該方法返回true,否則返回false。示例如下:

HashMap<String, Integer> hashMap = new HashMap<>();
hashMap.put("key1", 1);
hashMap.put("key2", 2);

if (hashMap.containsKey("key1")) {
    System.out.println("Key 'key1' exists in the HashMap");
} else {
    System.out.println("Key 'key1' does not exist in the HashMap");
}

if (hashMap.containsKey("key3")) {
    System.out.println("Key 'key3' exists in the HashMap");
} else {
    System.out.println("Key 'key3' does not exist in the HashMap");
}

上面的示例中,首先創(chuàng)建了一個HashMap對象,并向其中添加了兩個鍵值對。然后使用containsKey()方法來判斷指定的key是否存在于HashMap中,并輸出相應(yīng)的提示信息。

1