The java.util.Set.isEmpty() method is used to check if a Set is empty or not. It returns True if the Set is empty otherwise it returns False.
Syntax:
boolean isEmpty()
Parameters: This method does not take any parameter
Return Value: The method returns True if the set is empty else returns False.
Below program illustrate the java.util.Set.isEmpty() method:
import java.io.*;
import java.util.*;
public class SetDemo {
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( "Is the set empty? " + set.isEmpty());
set.clear();
System.out.println( "Is the set empty? " + set.isEmpty());
}
}
|
Output:
Set: [4, Geeks, Welcome, To]
Is the set empty? false
Is the set empty? true
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#isEmpty()