Java Collection Tutorial - Java HashSet.clear()








Syntax

HashSet.clear() has the following syntax.

public void clear()

Example

In the following code shows how to use HashSet.clear() method.

/* ww  w.  j a  v a2s. co m*/

import java.util.HashSet;

public class Main {
   public static void main(String args[]) {
      HashSet<String>  newset = new HashSet <String> ();
                  
      // populate hash set
      newset.add("Learning"); 
      newset.add("from");
      newset.add("java2s.com"); 
            
      // checking elements in hash set
      System.out.println("Hash set values: "+ newset);
      
      // clear set values
      newset.clear();
      
      System.out.println("Hash set values after clear: "+ newset);      
   }    
}

The code above generates the following result.