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


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



描述

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

聲明

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

public boolean containsValue(Object value)

參數

value─ 這是要檢查的可能值。

返回值

如果此映射將一個或多個鍵映射到指定的對象引用,則方法調用將返回 'true'。

異常

NA

示例

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

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 value exists at key 3 
      boolean isavailable = ihmap.containsValue(3);

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

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

Is value exists at key '3':false

相關用法


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