Friday, November 21, 2025
HomeLanguagesJavaSortedSet isEmpty() method in Java with Examples

SortedSet isEmpty() method in Java with Examples

The java.util.SortedSet.isEmpty() method is used to check if a SortedSet is empty or not. It returns True if the SortedSet 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 SortedSet is empty else returns False.

Note: The isEmpty() method in SortedSet is inherited from the Set interface in Java.

Below program illustrate the java.util.SortedSet.isEmpty() method:




// Java code to illustrate isEmpty()
  
import java.io.*;
import java.util.*;
  
public class SortedSetDemo {
    public static void main(String args[])
    {
        // Creating an empty Set
        SortedSet<String> set
            = new TreeSet<String>();
  
        // Use add() method to
        // add elements into the Set
        set.add("Welcome");
        set.add("To");
        set.add("Geeks");
        set.add("4");
        set.add("Geeks");
  
        // Displaying the Set
        System.out.println("Set: " + set);
  
        // Check for the empty set
        System.out.println("Is the set empty? "
                           + set.isEmpty());
  
        // Clearing the set using clear() method
        set.clear();
  
        // Again Checking for the empty set
        System.out.println("Is the set empty? "
                           + set.isEmpty());
    }
}


Output:

Set: [4, Geeks, To, Welcome]
Is the set empty? false
Is the set empty? true

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#isEmpty()

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

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11996 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS