The Java.util.HashSet.isEmpty() method is used to check if a HashSet is empty or not. It returns True if the HashSet is empty otherwise it returns False.
Syntax:
Hash_Set.isEmpty()
Parameters: This method does not take any parameter
Return Value: The function returns True if the set is empty else returns False.
Below program illustrate the Java.util.HashSet.isEmpty() 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( "Is the set empty: " + set.isEmpty());
set.clear();
System.out.println( "Is the set empty: " + set.isEmpty());
}
}
|
Output:
HashSet: [4, Geeks, Welcome, To]
Is the set empty: false
Is the set empty: true