Java Utility Library

Java ArrayDeque - peekLast() Method



The java.util.ArrayDeque.peekLast() method is used to retrieve the last element of the deque. The method returns null, if the deque is empty. Unlike the ArrayDeque pollLast method, it does not remove the retrieved element.

Syntax

public E peekLast()

Here, E is the type of element maintained by the container.


Parameters

No parameter is required.

Return Value

Returns the last element of the deque, or null if the deque is empty.

Exception

NA.

Example:

In the example below, the java.util.ArrayDeque.peekLast() method is used to retrieve the last element of the given deque.

import java.util.*;

public class MyClass {
  public static void main(String[] args) {
    //creating a ArrayDeque
    ArrayDeque<Integer> MyDeque = new ArrayDeque<Integer>();

    //populating ArrayDeque 
    MyDeque.add(10);
    MyDeque.add(20);
    MyDeque.add(30);

    //printing ArrayDeque in reverse order
    System.out.println("MyDeque contains: ");
    while(MyDeque.size() != 0) {
      System.out.println(MyDeque.peekLast());
      MyDeque.removeLast();
   }
  }
}

The output of the above code will be:

MyDeque contains: 
30
20
10

❮ Java.util - ArrayDeque