Sunday, December 14, 2025
HomeLanguagesJavaTreeSet remove() Method in Java

TreeSet remove() Method in Java

The Java.util.TreeSet.remove(Object O) method is to remove a particular element from a Tree set.

Syntax:

TreeSet.remove(Object O)

Parameters: The parameter O is of the type of Tree set and specifies the element to be removed from the set.

Return Value: This method returns True if the element specified in the parameter is initially present in the Set and is successfully removed otherwise it returns False.

Below program illustrate the Java.util.TreeSet.remove() method:




// Java code to illustrate remove()
import java.util.*;
import java.util.TreeSet;
  
public class TreeSetDemo {
    public static void main(String args[])
    {
        // Creating an empty TreeSet
        TreeSet<String> tree = new TreeSet<String>();
  
        // Use add() method to add elements into the Set
        tree.add("Welcome");
        tree.add("To");
        tree.add("Geeks");
        tree.add("4");
        tree.add("Geeks");
        tree.add("TreeSet");
  
        // Displaying the TreeSet
        System.out.println("TreeSet: " + tree);
  
        // Removing elements using remove() method
        tree.remove("Geeks");
        tree.remove("4");
        tree.remove("TreeSet");
  
        // Displaying the TreeSet after removal
        System.out.println("New TreeSet: " + tree);
    }
}


Output:

TreeSet: [4, Geeks, To, TreeSet, Welcome]
New TreeSet: [To, Welcome]
RELATED ARTICLES

Most Popular

Dominic
32447 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6816 POSTS0 COMMENTS
Nicole Veronica
11953 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12031 POSTS0 COMMENTS
Shaida Kate Naidoo
6951 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6899 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS