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:
import java.io.*;
import java.util.*;
public class SetDemo {
public static void main(String args[])
{
Set<String> st = new HashSet<String>();
st.add( "Welcome" );
st.add( "To" );
st.add( "Geeks" );
st.add( "4" );
st.add( "Geeks" );
System.out.println( "Initial Set: " + st);
st.clear();
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()
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
31 Dec, 2018
Like Article
Save Article