java.util.HashMap.containsKey()


描述

所述containsKey(Object key)方法被用来检查是否此映射包含指定键的映射。

声明

以下是java.util.HashMap.containsKey()方法的声明。

public boolean containsKey(Object key)

参数

key - 这是要在此映射中进行测试的密钥。

返回值

如果此映射包含指定键的映射,则方法调用返回“true”。

异常

NA

实例

以下示例显示了java.util.HashMap.containsKey()的用法

package com.tutorialspoint;

import java.util.*;

public class HashMapDemo {
   public static void main(String args[]) {

      // create hash map
      HashMap newmap = new HashMap();

      // populate hash map
      newmap.put(1, "tutorials");
      newmap.put(2, "point");
      newmap.put(3, "is best");

      // check existence of key 2
      System.out.println("Check if key 2 exists: " + newmap.containsKey(2));
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

Check if key 2 exists: true