在Java中,可以使用HashMap的containsKey()方法來判斷是否存在指定的key。該方法會返回一個boolean值,表示是否存在指定的key。如果存在,則返回true;如果不存在,則返回false。示例如下:
HashMap<String, String> hashMap = new HashMap<>();
hashMap.put("key1", "value1");
hashMap.put("key2", "value2");
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");
}
在上面的示例中,我們先創建了一個HashMap對象,并向其添加了兩個key-value對。然后使用containsKey()方法判斷是否存在key為 “key1” 的鍵,最終輸出相應的結果。