Java Collection Tutorial - Java Vector.get(int index)








Syntax

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

public E get(int index)

Example

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

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

      // let us get the 3rd element of the vector
      System.out.println("Third element is :"+vec.get(3));                  
   }
}

The code above generates the following result.