Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.SimpleTimeZone;

public class Main {
    public static void main(String args[]) {

        SimpleTimeZone stobj = new SimpleTimeZone(820, "US");

        // get hash code
        int hashcode = stobj.hashCode();

        // check hash code value       
        System.out.println("Hash code is : " + hashcode);
    }
}