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) {
        LinkedList<String> list = new LinkedList<String>();

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

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

        // print the size of the list
        System.out.println("List size:" + list.size());

        // add 2 more elements
        list.add("HTML");
        list.add("CSS");

        // print the size of the list
        System.out.println("List size:" + list.size());
    }
}