Friday, June 19, 2026
HomeLanguagesJavaSortedSet clear() method in Java with Examples

SortedSet clear() method in Java with Examples

The clear() method is used to remove all the elements from a SortedSet. Using the clear() method only clears all the element from the set and not deletes the set. In other words, we can say that the clear() method is used to only empty an existing Set.

Syntax:

void clear()

Parameters: The method does not take any parameter

Return Value: The method does not returns any value.

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

Below program illustrate the Java.util.Set.clear() method:




// Java code to illustrate clear()
  
import java.io.*;
import java.util.*;
  
public class SetDemo {
    public static void main(String args[])
    {
        // Creating an empty Set
        SortedSet<String> st
            = new TreeSet<String>();
  
        // Use add() method to
        // add elements into the Set
        st.add("Welcome");
        st.add("To");
        st.add("Geeks");
        st.add("4");
        st.add("Geeks");
  
        // Displaying the Set
        System.out.println("Initial Set: " + st);
  
        // Clearing the Set using clear() method
        st.clear();
  
        // Displaying the final Set after clearing;
        System.out.println("The final set: " + st);
    }
}


Output:

Initial Set: [4, Geeks, To, Welcome]
The final set: []

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

RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6898 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6965 POSTS0 COMMENTS