![]() |
VOOZH | about |
The java.util.vector.lastElement() method in Java is used to retrieve or fetch the last element of the Vector. It returns the element present at the last index of the vector.
Syntax:
Vector.lastElement()
Parameters: The method does not take any parameter.
Return Value: The method returns the last element present in the Vector.
Below programs illustrate the Java.util.Vector.lastElement() method:
Program 1:
Vector: [Welcome, To, Geeks, 4, Geeks] The last element is: Geeks
Program 2:
Vector: [10, 15, 30, 20, 5] The last element is: 5
Time complexity: O(1).
Auxiliary Space: O(1).