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


Java LinkedHashMap containsValue()用法及代碼示例


LinkedHashMap類containsValue()方法

  • containsValue() 方法可在java.util包。
  • containsValue() 方法用於檢查此 LinkedHashMap 是否將至少一個鍵元素與給定的值元素(val_ele)相關聯。
  • containsValue() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • containsValue() 方法在檢查給定值元素的關鍵元素時不會拋出異常。

用法:

    public boolean containsValue(Object val_ele);

參數:

  • Object val_ele– 表示要測試其在此 LinkedHashMap 中是否存在的值元素。

返回值:

該方法的返回類型是boolean, 當給定的值元素 (val_ele) 包含至少一個關鍵元素時返回真,否則返回假。

例:

// Java program to demonstrate the example 
// of boolean containsValue(Object val_ele) method 
// of  LinkedHashMap 

import java.util.*;

public class ContainsValueOfLinkedHashMap {
    public static void main(String[] args) {
        // Instantiates a LinkedHashMap object
        Map < Integer, String > map = new LinkedHashMap < Integer, String > ();

        // By using put() method is to add
        // key-value pairs in a LinkedHashMap
        map.put(10, "C");
        map.put(20, "C++");
        map.put(50, "JAVA");
        map.put(40, "PHP");
        map.put(30, "SFDC");

        //Display LinkedHashMap
        System.out.println("LinkedHashMap:" + map);

        // By using containsValue() method is
        // to check whether this map associates
        // any key for the given key elemen or nott
        // of this LinkedHashMap
        boolean status = map.containsValue("PHP");

        System.out.print("map.containsValue(PHP):");
        System.out.println(status);
    }
}

輸出

LinkedHashMap:{10=C, 20=C++, 50=JAVA, 40=PHP, 30=SFDC}
map.containsValue(PHP):true


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java LinkedHashMap containsValue() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。