The Java.util.Stack.pop() method in Java is used to pop an element from the stack. The element is popped from the top of the stack and is removed from the same.
Syntax:
STACK.pop()
Parameters: The method does not take any parameters.
Return Value: This method returns the element present at the top of the stack and then removes it.
Exceptions: The method throws EmptyStackException is thrown if the stack is empty.
Below programs illustrate the Java.util.Stack.pop() method:
Program 1:
// Java code to illustrate pop() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<String> STACK = new Stack<String>(); // Use add() method to add elements STACK.push("Welcome"); STACK.push("To"); STACK.push("Geeks"); STACK.push("For"); STACK.push("Geeks"); // Displaying the Stack System.out.println("Initial Stack: " + STACK); // Removing elements using pop() method System.out.println("Popped element: " + STACK.pop()); System.out.println("Popped element: " + STACK.pop()); // Displaying the Stack after pop operation System.out.println("Stack after pop peration " + STACK); } } |
Initial Stack: [Welcome, To, Geeks, For, Geeks] Popped element: Geeks Popped element: For Stack after pop peration [Welcome, To, Geeks]
Program 2:
// Java code to illustrate pop() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<Integer> STACK = new Stack<Integer>(); // Use add() method to add elements STACK.push(10); STACK.push(15); STACK.push(30); STACK.push(20); STACK.push(5); // Displaying the Stack System.out.println("Initial Stack: " + STACK); // Removing elements using pop() method System.out.println("Popped element: " + STACK.pop()); System.out.println("Popped element: " + STACK.pop()); // Displaying the Stack after pop operation System.out.println("Stack after pop operation " + STACK); } } |
Initial Stack: [10, 15, 30, 20, 5] Popped element: 5 Popped element: 20 Stack after pop operation [10, 15, 30]
Recommended Posts:
- Stack contains() method in Java with Example
- Stack set() method in Java with Example
- Stack get() method in Java with Example
- Stack toArray() method in Java with Example
- Stack subList() method in Java with Example
- Stack listIterator() method in Java with Example
- Stack removeRange() method in Java with Example
- Stack toArray(T[]) method in Java with Example
- Stack peek() Method in Java
- Stack removeAllElements() method in Java with Example
- Stack remove(int) method in Java with Example
- Stack removeElementAt() method in Java with Example
- Stack listIterator(int) method in Java with Example
- Stack setElementAt() method in Java with Example
- Stack size() method in Java with Example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



