Java Vector.remove(int index)

Syntax

Vector.remove(int index) has the following syntax.

public E remove(int index)

Example

In the following code shows how to use Vector.remove(int index) method.


//from   ww w.  ja  v a  2 s. com
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);

      // let us remove the 1st element
      System.out.println("Removed element: "+vec.remove(1));                  
   }     
}

The code above generates the following result.