containsKey方法是Map接口中的一個方法,用于判斷是否包含指定的鍵名。
語法:
boolean containsKey(Object key)
參數:
key - 指定的鍵名
返回值:
如果Map中包含指定的鍵名,則返回true;否則返回false。
示例代碼:
Map<String, Integer> map = new HashMap<>();
map.put("apple", 10);
map.put("banana", 5);
map.put("orange", 3);
boolean containsApple = map.containsKey("apple");
System.out.println("Contains apple: " + containsApple); // 輸出:Contains apple: true
boolean containsGrape = map.containsKey("grape");
System.out.println("Contains grape: " + containsGrape); // 輸出:Contains grape: false
在上面的示例代碼中,我們創建了一個HashMap對象,并向其中添加了三個鍵值對。然后使用containsKey方法判斷Map中是否包含指定的鍵名。最后輸出結果表明Map中包含"apple"鍵名,但不包含"grape"鍵名。