The java.util.concurrent.ConcurrentLinkedDeque.getFirst() method is an in-built method in Java which returns the first element of the deque container.
Syntax:
Conn_Linked_Deque.getFirst()
Parameters: The method does not accept any parameter.
Return Value: The method returns the first element present in the Deque.
Exception: The function throws a
NoSuchElementException when the deque is empty.
Below programs illustrate the ConcurrentLinkedDeque.getFirst() method :
Program 1:
Output:
Elements in the Deque: [Welcome, To, Geeks, 4, Geeks]
The first element is: Welcome
Program 2: