如果此映射包含指定键的映射,java.util.HashMap.containsKey() 方法将返回 true。
语法
public boolean containsKey(Object key)
参数
key | 指定存在于其中的密钥该映射将被测试。 |
返回值
如果该映射包含指定键的映射,则返回 true。
异常
无。示例:
在下面的示例中,java.util.HashMap .containsKey() 方法用于检查给定映射中是否存在指定键。
import java.util.*;
public class MyClass {
public static void main(String[] args) {
//创建哈希图
HashMap<Integer, String> MyMap = new HashMap<Integer, String>();
//填充MyMap
MyMap.put(101, "John");
MyMap.put(102, "Marry");
MyMap.put(103, "Kim");
MyMap.put(104, "Jo");
//检查103键是否存在
System.out.print("Does MyMap contain 103 key? - ");
System.out.print(MyMap.containsKey(103));
//检查105密钥是否存在
System.out.print("\nDoes MyMap contain 105 key? - ");
System.out.print(MyMap.containsKey(105));
}
}
上述代码的输出将是:
Does MyMap contain 103 key? - true
Does MyMap contain 105 key? - false