Friday, April 3, 2026
HomeLanguagesJavaConcurrentLinkedDeque contains() method in Java with Examples

ConcurrentLinkedDeque contains() method in Java with Examples

The java.util.concurrent.ConcurrentLinkedDeque.contains() method is an inbuilt method in Java which checks if the specified element, passed as a parameter, is present in the deque or not.

Syntax:

public boolean contains(Object elem)

Parameters: The method accepts a parameter elem which checks if the specified element is present in the deque or not.

Return Value: The function returns True if the element is present in the deque and returns False otherwise.

Below programs illustrate the ConcurrentLinkedDeque.contains() method:

Program 1:




// Java Program to Demonstrate contains()
// method of ConcurrentLinkedDeque
  
import java.util.concurrent.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Creating an empty Deque
        ConcurrentLinkedDeque<String> cld = new ConcurrentLinkedDeque<String>();
  
        // Add elements into the Deque
        cld.add("Welcome");
        cld.add("To");
        cld.add("Geeks");
        cld.add("4");
        cld.add("Geeks");
  
        // Displaying the Deque
        System.out.println("ConcurrentLinkedDeque: "
                           + cld);
  
        // Check if GFG is present using contains()
        if (cld.contains("GFG")) {
  
            // Displaying message
            System.out.println("GFG is present");
        }
        else {
  
            // Displaying message
            System.out.println("GFG is not present");
        }
    }
}


Output:

ConcurrentLinkedDeque: [Welcome, To, Geeks, 4, Geeks]
GFG is not present

Program 2:




// Java Program to Demonstrate contains()
// method of ConcurrentLinkedDeque
  
import java.util.concurrent.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Creating an empty Deque
        ConcurrentLinkedDeque<String> cld = new ConcurrentLinkedDeque<String>();
  
        // Add elements into the Deque
        cld.add("Welcome");
        cld.add("To");
        cld.add("Geeks");
        cld.add("4");
        cld.add("Geeks");
  
        // Displaying the Deque
        System.out.println("ConcurrentLinkedDeque: "
                           + cld);
  
        // Check if Geeks is present using contains()
        if (cld.contains("Geeks")) {
  
            // Displaying message
            System.out.println("Geeks is present");
        }
        else {
  
            // Displaying message
            System.out.println("Geeks not present");
        }
    }
}


Output:

ConcurrentLinkedDeque: [Welcome, To, Geeks, 4, Geeks]
Geeks is present

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#contains-java.lang.Object-

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32512 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6885 POSTS0 COMMENTS
Nicole Veronica
12006 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7015 POSTS0 COMMENTS
Ted Musemwa
7259 POSTS0 COMMENTS
Thapelo Manthata
6971 POSTS0 COMMENTS
Umr Jansen
6960 POSTS0 COMMENTS