The Java.util.Set.contains() method is used to check whether a specific element is present in the Set or not. So basically it is used to check if a Set contains any particular element.
Syntax:
boolean contains(Object element)
Parameters: The parameter element is of the type of Set. This is the element that needs to be tested if it is present in the set or not.
Return Value: The method returns true if the element is present in the set else return False.
Below program illustrate the Java.util.Set.contains() method:
import java.io.*;
import java.util.*;
public class HashSetDemo {
public static void main(String args[])
{
Set<String> set = new HashSet<String>();
set.add( "Welcome" );
set.add( "To" );
set.add( "Geeks" );
set.add( "4" );
set.add( "Geeks" );
System.out.println( "Set: " + set);
System.out.println( "Does the Set contains 'Geeks'? "
+ set.contains( "Geeks" ));
System.out.println( "Does the Set contains '4'? "
+ set.contains( "4" ));
System.out.println( "Does the Set contains 'No'? "
+ set.contains( "No" ));
}
}
|
Output:
Set: [4, Geeks, Welcome, To]
Does the Set contains 'Geeks'? true
Does the Set contains '4'? true
Does the Set contains 'No'? false
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#contains(java.lang.Object)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Dec, 2018
Like Article
Save Article