VOOZH about

URL: https://www.geeksforgeeks.org/java/arraydeque-pop-method-in-java/

⇱ ArrayDeque pop() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ArrayDeque pop() Method in Java

Last Updated : 10 Dec, 2018
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:
Output:
Initial ArrayDeque: [10, 15, 30, 20, 5]
Popped element: 10
Popped element: 15
Deque after operation [30, 20, 5]
Comment