Java ConcurrentSkipListMap containsValue()方法及示例

Java ConcurrentSkipListMap containsValue()方法及示例

java.util.concurrent.ConcurrentSkipListMapcontainsValue() 方法是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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程