VOOZH about

URL: https://www.geeksforgeeks.org/java/set-clear-method-in-java-with-examples/

⇱ Set clear() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Set clear() method in Java with Examples

Last Updated : 31 Dec, 2018
The Java.util.Set.clear() method is used to remove all the elements from a Set. 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. Below program illustrate the Java.util.method.clear() method:
Output:
Initial Set: [4, Geeks, Welcome, To]
The final set: []
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#clear()
Comment