VOOZH about

URL: https://www.geeksforgeeks.org/java/stack-lastelement-method-in-java-with-example/

⇱ Stack lastElement() method in Java with Example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Stack lastElement() method in Java with Example

Last Updated : 24 Dec, 2018
The Java.util.Stack.lastElement() method in Java is used to retrieve or fetch the last element of the Stack. It returns the element present at the last index of the Stack. Syntax:
Stack.lastElement()
Parameters: The method does not take any parameter. Return Value: The method returns the last element present in the Stack. Below programs illustrate the Java.util.Stack.lastElement() method: Program 1:
Output:
Stack: [Welcome, To, Geeks, 4, Geeks]
The last element is: Geeks
Program 2:
Output:
Stack: [10, 15, 30, 20, 5]
The last element is: 5
Comment