Open In App

ArrayDeque element() Method in Java

Last Updated : 10 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The java.util.ArrayDeque.element() method in Java is used to retrieve or fetch the head of the ArrayDeque. In the process, the method does not delete the element from the deque instead it just returns the element. Syntax:
Array_Deque.element()
Parameters: The method does not take any parameter. Return Value: The method returns the element present at the head of the Deque. Below programs illustrate the Java.util.ArrayDeque.element() method: Program 1:
Output:
ArrayDeque: [Welcome, To, Geeks, 4, Geeks]
The head element is: Welcome
Program 2:
Output:
ArrayDeque: [10, 15, 30, 20, 5]
The head element is: 10

Similar Reads