Java Vector.elementAt(int index)
Syntax
Vector.elementAt(int index) has the following syntax.
public E elementAt(int index)
Example
In the following code shows how to use Vector.elementAt(int index) method.
/*www. j a va2 s . c o m*/
import java.util.Vector;
public class Main {
public static void main(String[] args) {
Vector<Integer> vec = new Vector<Integer> (4);
vec.add(4);
vec.add(3);
vec.add(2);
vec.add(1);
System.out.println(vec.elementAt(1));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »