The Java.util.HashSet.contains() method is used to check whether a specific element is present in the HashSet or not. So basically it is used to check if a Set contains any particular element.
Syntax:
Hash_Set.contains(Object element)
Parameters: The parameter element is of the type of HashSet. 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.HashSet.contains() method:
import java.io.*;
import java.util.HashSet;
public class HashSetDemo {
public static void main(String args[])
{
HashSet<String> set = new HashSet<String>();
set.add( "Welcome" );
set.add( "To" );
set.add( "Geeks" );
set.add( "4" );
set.add( "Geeks" );
System.out.println( "HashSet: " + 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:
HashSet: [4, Geeks, Welcome, To]
Does the Set contains 'Geeks'? true
Does the Set contains '4'? true
Does the Set contains 'No'? false
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
26 Nov, 2018
Like Article
Save Article