HashMap的containsKey()方法
时间: 2024-05-29 12:12:19 浏览: 66
HashMap的containsKey()方法用于判断HashMap中是否包含指定的键。
该方法的方法签名如下:
public boolean containsKey(Object key)
参数说明:
- key:要检查的键。
返回值说明:
如果HashMap中包含指定的键,则返回true,否则返回false。
示例:
下面的示例演示了如何使用containsKey()方法判断HashMap中是否包含指定的键。
import java.util.HashMap;
public class HashMapDemo {
public static void main(String[] args) {
// 创建HashMap对象
HashMap<String, String> map = new HashMap<>();
// 向map中添加键值对
map.put("1", "one");
map.put("2", "two");
map.put("3", "three");
// 判断map中是否包含指定的键
System.out.println(map.containsKey("1")); // true
System.out.println(map.containsKey("4")); // false
}
}
输出结果为:
true
false
相关问题
hashmap的containskey方法
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"
hashmap.containskey
HashMap.containsKey() 方法用于判断 HashMap 中是否有指定的键。该方法返回布尔值,如果 HashMap 中存在该键,则返回 true,否则返回 false。
语法:
```
public boolean containsKey(Object key)
```
参数:
```
key: 为要搜索的键。
```
返回值:
```
如果此映射包含指定键的映射关系,则返回 true;否则返回 false。
```
示例:
```
HashMap<Integer, String> map = new HashMap<>();
map.put(1, "A");
map.put(2, "B");
map.put(3, "C");
System.out.println(map.containsKey(1)); // true
System.out.println(map.containsKey(4)); // false
```
阅读全文