VOOZH about

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

⇱ NavigableSet clear() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

NavigableSet clear() method in Java

Last Updated : 30 Sep, 2019
The Java.util.NavigableSet.clear() method is used to remove all the elements from a NavigableSet. Using the clear() method only clears all the element from the NavigableSet and not deletes the NavigableSet. In other words, we can say that the clear() method is used to only empty an existing NavigableSet. Syntax:
void clear()
Parameters: The method does not take any parameter Return Value: The method does not returns any value. Below program illustrate the Java.util.method.clear() method:
Output:
Initial NavigableSet: [4, Geeks, To, Welcome]
The final NavigableSet: []
Comment
Article Tags: