hashmap的containskey方法
时间: 2023-04-19 13:02:37 浏览: 93
HashMap原理.rar
HashMap的containsKey方法用来检查一个键是否在HashMap中存在。该方法接受一个参数,即要检查的键,并返回一个布尔值,表示该键是否存在于HashMap中。
示例代码:
```java
HashMap<String, Integer> map = new HashMap<>();
map.put("a",1);
map.put("b",2);
if(map.containsKey("a")){
System.out.println("The key 'a' exist in the map");
}else{
System.out.println("The key 'a' doesn't exist in the map");
}
```
上面的代码会输出 "The key 'a' exist in the map"
阅读全文