Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.HashMap;

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

        // populate hash map
        newmap.put(1, "tutorials");
        newmap.put(2, "from");
        newmap.put(3, "java2s.com");

        // check existence of key 2
        System.out.println("Check if key 2 exists: " + newmap.containsKey(2));
    }
}