hashmap判断key相等的方法是什么

628
2024/5/30 17:37:11
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在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” 的键,最终输出相应的结果。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: hashmap的属性有哪些