在Java中,containsKey()是用于判斷一個Map集合中是否包含指定的鍵的方法。它返回一個boolean類型的值,如果存在指定的鍵,則返回true;否則返回false。
使用示例:
Map<String, Integer> map = new HashMap<>();
map.put("apple", 1);
map.put("banana", 2);
map.put("orange", 3);
boolean containsKey = map.containsKey("apple");
System.out.println(containsKey); // 輸出true
containsKey = map.containsKey("grape");
System.out.println(containsKey); // 輸出false
在上述示例中,首先創建了一個Map對象,并向其添加了三個鍵值對。然后使用containsKey()方法分別判斷是否存在指定的鍵"apple"和"grape",并將結果輸出。