Java ConcurrentSkipListMap containsValue()方法及示例
java.util.concurrent.ConcurrentSkipListMap 的 containsValue() 方法是Java中的一个内置函数,如果该地图将一个或多个键映射到指定的值,则返回 true 。如果没有要映射的键,该方法返回null。当指定的值为空时,该方法会抛出NullPointerException。
语法:
public boolean containsValue(Object ob)
参数: 该函数接受一个强制参数 ob ,它指定了要测试的值。
返回值: 如果映射存在,该函数返回真,否则返回假。
异常: 当指定的值为空时,该方法抛出NullPointerException。
以下程序说明了上述方法:
程序1:
// Java Program Demonstrate containsValue()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap<Integer, Integer>
mpp = new ConcurrentSkipListMap<Integer,
Integer>();
// Adding elements to this map
for (int i = 1; i <= 5; i++)
mpp.put(i, i);
// checking whether object present in map
System.out.println(mpp.containsValue(4));
}
}
输出
true
程序 :
// Java Program Demonstrate containsValue()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap<Integer, Integer>
mpp = new ConcurrentSkipListMap<Integer,
Integer>();
// Adding elements to this map
for (int i = 1; i <= 5; i++)
mpp.put(i, i);
// checking whether object present in map
System.out.println(mpp.containsValue(7));
}
}
输出
false
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#containsValue-java.lang.Object-