Java LinkedTransferQueue contains()方法

Java LinkedTransferQueue contains()方法

java.util.concurrent.LinkedTransferQueue的 contains() 方法是Java中的一个内置函数,如果指定的元素存在于这个队列中,则返回一个真布尔值,否则返回假。

语法

LinkedTransferQueue.contains(Object o)

参数: 该函数接受一个参数o,即要检查是否存在于这个队列中。

返回值: 该函数返回一个布尔值。如果指定的元素存在于这个队列中,它返回True,否则它返回False。

下面的程序说明了LinkedTransferQueue.contains()方法。

程序1 :

// Java Program Demonstrate contains()
// method of LinkedTransferQueue
  
import java.util.concurrent.*;
  
class LinkedTransferQueueContainsExample1 {
    public static void main(String[] args)
    {
  
        // Initializing the queue
        LinkedTransferQueue<Integer>
            queue = new LinkedTransferQueue<Integer>();
  
        // Adding elements to this queue
        for (int i = 10; i <= 15; i++)
            queue.add(i);
  
        // Checks if 9 is present in the queue
        if (queue.contains(9))
            System.out.println("9 is present in the queue.");
        else
            System.out.println("9 is not present in the queue.");
    }
}

输出:

9 is not present in the queue.

示例2

// Java Program Demonstrate contains()
// method of LinkedTransferQueue */
  
import java.util.concurrent.*;
  
class LinkedTransferQueueContainsExample2 {
    public static void main(String[] args)
    {
  
        // Initializing the queue
        LinkedTransferQueue<String>
            queue = new LinkedTransferQueue<String>();
  
        // Adding elements to this queue
        queue.add("Gfg");
        queue.add("is");
        queue.add("fun");
  
        // Checks if Gfg is present in the queue
        if (queue.contains("Gfg"))
            System.out.println("Gfg is present in the queue.");
        else
            System.out.println("Gfg is not present in the queue.");
    }
}

输出:

Gfg is present in the queue.

参考资料 : https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/LinkedTransferQueue.html#contains(java.lang.Object)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程