Example usage for java.util LinkedList element

List of usage examples for java.util LinkedList element

Introduction

In this page you can find the example usage for java.util LinkedList element.

Prototype

public E element() 

Source Link

Document

Retrieves, but does not remove, the head (first element) of this list.

Usage

From source file:Main.java

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);

    // print the head of the list
    System.out.println("Head of list:" + list.element());
}