java.util.WeakHashMap.containsValue() java.util.WeakHashMap.containsKey() java.util.WeakHashMap.entrySet() 描述 所述的containsValue(Object value)方法用来返回真,如果此映射,映射一个或多个键映射到指定的值。 声明 以下是java.util.WeakHashMap.containsValue()方法的声明。 public boolean containsValue(Object value) 参数 value - 该值是要测试其在此映射中的存在的输入。 返回值 如果此映射将一个或多个键映射到指定值,则方法调用返回true。 异常 NA 实例 以下示例显示了java.util.WeakHashMap.containsValue()方法的用法。 package com.tutorialspoint; import java.util.Map; import java.util.WeakHashMap; public class WeakHashMapDemo { public static void main(String[] args) { Map<String, String> weakHashMap = new WeakHashMap<String, String>(); // put keys and values in the Map weakHashMap.put("1", "first"); weakHashMap.put("2", "two"); weakHashMap.put("3", "three"); // check existence of value "three" System.out.println("Checking value 'three'"); System.out.println(weakHashMap.containsValue("three")); } } 让我们编译并运行上面的程序,这将产生以下结果。 Checking value 'three' true java.util.WeakHashMap.containsKey() java.util.WeakHashMap.entrySet()