Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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