Java Collection Tutorial - 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;
//  w  ww .jav  a 2 s.c  o  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 element: "+vec.lastElement());                  
   }     
}

The code above generates the following result.