Java Vector.removeAll(Collection <?> c)

Syntax

Vector.removeAll(Collection <?> c) has the following syntax.

public boolean removeAll(Collection <?> c)

Example

In the following code shows how to use Vector.removeAll(Collection <?> c) method.


//from   w  w  w .ja  v  a2s.  c o  m
import java.util.Vector;

public class Main {
   public static void main(String[] args) {
           
      Vector  vec = new Vector  (4);

      
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);

      System.out.println(vec);
      System.out.println("Size of the vector: "+vec.size());
      
      // let us remove all the elements
      System.out.println("Removing all the elements"); 
      vec.removeAll(vec);
      System.out.println("Size of the vector: "+vec.size());       
   }     
}

The code above generates the following result.