Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Hashtable;

public class Main {
    public static void main(String args[]) {
        // create hash table 
        Hashtable<Integer, String> htable1 = new Hashtable<Integer, String>();

        // put values in table
        htable1.put(1, "A");
        htable1.put(2, "B");
        htable1.put(3, "C");
        htable1.put(4, "from java2s.com");

        // get values at key 3
        System.out.println("Values at key 3 is:" + htable1.get(3));
    }
}