Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.LinkedHashMap;

public class Main {
    public static void main(String[] args) {
        LinkedHashMap<String, Integer> lHashMap = new LinkedHashMap<String, Integer>();

        lHashMap.put("One", new Integer(1));
        lHashMap.put("Two", new Integer(2));

        Object obj = lHashMap.get("One");
        System.out.println(obj);
    }
}