Java LinkedList.peekLast()

Syntax

LinkedList.peekLast() has the following syntax.

public E peekLast()

Example

In the following code shows how to use LinkedList.peekLast() method.


//from w w  w .  j a  v  a 2 s .  c  om
import java.util.LinkedList;

public class Main {

   public static void main(String[] args) {

      // create a LinkedList
      LinkedList<String> list = new LinkedList<String>();

      // add some elements
      list.add("Hello");
      list.add("from java2s.com");
      list.add("10");

      // print the list
      System.out.println("LinkedList:" + list);

      // peek at the last element
      System.out.println("Last element of the list:" + list.peekLast());
   }
}

The code above generates the following result.