containskey方法
时间: 2023-10-09 19:16:38 浏览: 56
Java Map遍历方法
containsKey方法是Java中Map接口的一个方法,用于判断Map集合中是否包含指定的键。该方法接受一个参数,代表要检查的键,当Map集合中包含该键时,返回true,否则返回false。
例如:
```
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
System.out.println(map.containsKey("A")); // true
System.out.println(map.containsKey("D")); // false
```
阅读全文