The java.util.ArrayDeque.peekLast() method in Java is used to retrieve or fetch the last element of the deque. The element retrieved does not get deleted or removed from the Queue instead the method just returns it. If no element is present in the deque or it is empty, then Null is returned.
Syntax:
Array_Deque.peekLast()
Parameters: The method does not take any parameter.
Return Value: The method returns the last element of the Deque.
Below programs illustrate the Java.util.ArrayDeque.peekLast() method:
Program 1:
Output:
Initial ArrayDeque: [Welcome, To, Geeks, 4, Geeks]
The last element is: Geeks
Final ArrayDeque: [Welcome, To, Geeks, 4, Geeks]
Program 2:
Output:
Initial ArrayDeque: [10, 15, 30, 20, 5]
The last element is: 5
Final ArrayDeque: [10, 15, 30, 20, 5]
Program 3: For an empty deque: