VOOZH about

URL: https://www.geeksforgeeks.org/java/treeset-clear-method-in-java/

⇱ TreeSet clear() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

TreeSet clear() Method in Java

Last Updated : 26 Nov, 2018
The Java.util.TreeSet.clear() method is used to remove all the elements from a TreeSet. 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 TreeSet. Syntax:
Tree_Set.clear()
Parameters: The method does not take any parameter Return Value: The function does not return anything. Below program illustrates the use of Java.util.TreeSet.clear() method:
Output:
TreeSet: [4, Geeks, To, TreeSet, Welcome]
After clearing TreeSet: []
Comment