Saturday, October 25, 2025
HomeLanguagesJavaConcurrentSkipListSet contains() method in Java

ConcurrentSkipListSet contains() method in Java

The contains() method of java.util.concurrent.ConcurrentSkipListSet is an in-built function in Java which returns a true boolean value if the specified element is present in this set otherwise it returns false.

Syntax:

ConcurrentSkipListSet.contains(Object o)

Parameters: The function accepts a single parameter o i.e. to be checked for the presence in this set.

Return Value: The function returns a Boolean value. It returns True if the specified element is present in this set else it returns False.

Below programs illustrate the ConcurrentSkipListSet.contains() method:

Program 1:




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


Output:

9 is not present in the set.

Program 2:




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


Output:

Gfg is present in the set.

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS