MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.util.HashMap;

public class MainClass {
    public static void main(String[] a) {

        HashMap map = new HashMap();
        map.put("key1", "value1");
        map.put("key2", "value2");
        map.put("key3", "value3");

        HashMap map2 = (HashMap) map.clone();
        System.out.println(map2);
    }
}