Java Vector.removeElement(Object obj)

Syntax

Vector.removeElement(Object obj) has the following syntax.

public boolean removeElement(Object obj)

Example

In the following code shows how to use Vector.removeElement(Object obj) method.


/*w  ww  .j  a  v  a  2s.  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());
      
      System.out.println("Removing all elements");
      // lets remove all the elements
      vec.removeElement(3);
      
      System.out.println("Now size of the vector: "+vec.size());      
   } 
}

The code above generates the following result.