The Java.util.ArrayDeque.pop() method in Java is used to pop an element from the deque. The element is popped from the top of the deque and is removed from the same.
Syntax:
Array_Deque.pop()
Parameters: The method does not take any parameters.
Return Value: This method returns the element present at the front of the Deque.
Exceptions: The method throws
NoSuchElementException is thrown if the deque is empty.
Below programs illustrate the Java.util.ArrayDeque.pop() method:
Program 1:
Output:
Initial ArrayDeque: [Welcome, To, Geeks, For, Geeks]
Popped element: Welcome
Popped element: To
Deque after operation [Geeks, For, Geeks]
Program 2: