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
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<String> STACK = new Stack<String>();
STACK.push("Welcome");
STACK.push("To");
STACK.push("Geeks");
STACK.push("For");
STACK.push("Geeks");
System.out.println("Initial Stack: " + STACK);
System.out.println("Popped element: " +
STACK.pop());
System.out.println("Popped element: " +
STACK.pop());
System.out.println("Stack after pop operation "
+ STACK);
}
}
|
Program 2:
Java
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<Integer> STACK = new Stack<Integer>();
STACK.push( 10 );
STACK.push( 15 );
STACK.push( 30 );
STACK.push( 20 );
STACK.push( 5 );
System.out.println("Initial Stack: " + STACK);
System.out.println("Popped element: " +
STACK.pop());
System.out.println("Popped element: " +
STACK.pop());
System.out.println("Stack after pop operation "
+ STACK);
}
}
|
Output:
Initial Stack: [10, 15, 30, 20, 5]
Popped element: 5
Popped element: 20
Stack after pop operation [10, 15, 30]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!