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: