當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java java.util.IdentityHashMap.containsKey()用法及代碼示例



描述

這個containsKey(Object key)方法用於測試指定的對象引用是否是此身份哈希映射中的鍵。

聲明

以下是聲明java.util.IdentityHashMap.containsKey()方法。

public boolean containsKey(Object key)

參數

key─ 這是可能要檢查的 key 。

返回值

如果指定的對象引用是此映射中的鍵,則方法調用將返回 'true'。

異常

NA

示例

下麵的例子展示了 java.util.IdentityHashMap.containsKey() 的用法

package com.tutorialspoint;

import java.util.*;

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

      // create identity hash map
      IdentityHashMap ihmap = new IdentityHashMap();

      // populate the map
      ihmap.put(1, "java");
      ihmap.put(2, "util");
      ihmap.put(3, "package");

      // check if key 3 exists
      boolean isavailable = ihmap.containsKey(3);

      System.out.println("Is key '3' exists:" + isavailable); 
   }    
}

讓我們編譯並運行上麵的程序,這將產生以下結果。

Is key '3' exists:true

相關用法


注:本文由純淨天空篩選整理自 java.util.IdentityHashMap.containsKey() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。