集册 Java实例教程 检查HashMap中是否存在特定密钥

检查HashMap中是否存在特定密钥

欢马劈雪     最近更新时间:2020-01-02 10:19:05

362
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
检查HashMap中是否存在特定密钥

 //N o w  J a v a  .   c o m

import java.util.HashMap;

 

public class Main {

 

  public static void main(String[] args) {

    HashMap hMap = new HashMap();

    hMap.put("1","One");

    hMap.put("2","Two");

    hMap.put("3","Three");

   

    boolean blnExists = hMap.containsKey("3");

    System.out.println("3 exists in HashMap ? : " + blnExists);

  }

}