Set clear() method in Java with Examples Last Updated : 31 Dec, 2018 Comments Improve Suggest changes Like Article Like Report 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: Java // Java code to illustrate clear() import java.io.*; import java.util.*; public class SetDemo { public static void main(String args[]) { // Creating an empty Set Set<String> st = new HashSet<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, Welcome, To] The final set: [] Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#clear() Comment More info G gopaldave Follow Improve Article Tags : Java Java-Collections Java-Functions java-set Explore Java BasicsIntroduction to Java4 min readJava Programming Basics9 min readJava Methods7 min readAccess Modifiers in Java6 min readArrays in Java9 min readJava Strings8 min readRegular Expressions in Java7 min readOOP & InterfacesClasses and Objects in Java10 min readAccess Modifiers in Java6 min readJava Constructors10 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface11 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java6 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling8 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking15+ min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples8 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz | Level Up Your Java Skills1 min readTop 50 Java Project Ideas For Beginners and Advanced [Update 2025]15+ min read Like