Java Map.containsKey()使用方法

Map.containsKey()方法用于检查Map中是否存在特定的键。如果键存在于Map中,则返回布尔值true,否则返回false。

以下是Java中使用Map.containsKey()方法的示例:

Map<String, Integer> map = new HashMap<>();
map.put("apple", 1);
map.put("banana", 2);
map.put("orange", 3);

if (map.containsKey("apple")) {
    System.out.println("The map contains the key 'apple'");
} else {
    System.out.println("The map does not contain the key 'apple'");
}

在这个例子中,我们创建了一个名为map的HashMap对象,并向其中添加了三个键值对。然后,我们使用containsKey()方法检查键”apple”是否存在于Map中。由于”apple”是我们添加到Map中的键之一,containsKey()方法返回true,并打印消息”The map contains the key ‘apple'”到控制台。