Java Vector.lastElement()
Syntax
Vector.lastElement() has the following syntax.
public E lastElement()
Example
In the following code shows how to use Vector.lastElement() method.
import java.util.Vector;
/*from w w w.j a v a 2s . co m*/
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 print the last element of the vector
System.out.println("Last elemet: "+vec.lastElement());
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »