📌  相关文章
📜  Java中的 LinkedTransferQueue contains() 方法

📅  最后修改于: 2022-05-13 01:55:00.253000             🧑  作者: Mango

Java中的 LinkedTransferQueue contains() 方法

Java .util.concurrent.LinkedTransferQueuecontains()方法是Java中的一个内置函数,如果此队列中存在指定元素,则返回 true 布尔值,否则返回 false。

句法:

LinkedTransferQueue.contains(Object o)

参数:该函数接受单个参数即检查该队列中是否存在。

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

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

方案一:

// Java Program Demonstrate contains()
// method of LinkedTransferQueue
  
import java.util.concurrent.*;
  
class LinkedTransferQueueContainsExample1 {
    public static void main(String[] args)
    {
  
        // Initializing the queue
        LinkedTransferQueue
            queue = new LinkedTransferQueue();
  
        // 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.

方案二:

// Java Program Demonstrate contains()
// method of LinkedTransferQueue */
  
import java.util.concurrent.*;
  
class LinkedTransferQueueContainsExample2 {
    public static void main(String[] args)
    {
  
        // Initializing the queue
        LinkedTransferQueue
            queue = new LinkedTransferQueue();
  
        // 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: Java Java.lang.Object)