Java SimpleTimeZone hashCode() Method



Description

The Java SimpleTimeZone hashCode() method is used to generate the hash code for the SimpleDateFormat object.

Declaration

Following is the declaration for java.util.SimpleTimeZone.hashCode() method.

public int hashCode()

Parameters

NA

Return Value

The method call returns the hash code for this object.

Exception

NA

Getting HashCode of SimpleTimeZone of India Zone Example

The following example shows the usage of Java SimpleTimeZone hashCode() method to get the hash code of a SimpleTimeZone object. We've created a SimpleTimeZone using India. Then we've retrieved the hashcode and printed it.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object 
      SimpleTimeZone stobj = new SimpleTimeZone(820,"India");

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

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

Output

Let us compile and run the above program, this will produce the following result.

Hash code is : 820

Getting HashCode of SimpleTimeZone of US Zone Example

The following example shows the usage of Java SimpleTimeZone hashCode() method to get the hash code of a SimpleTimeZone object. We've created a SimpleTimeZone using US. Then we've retrieved the hashcode and printed it.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object 
      SimpleTimeZone stobj = new SimpleTimeZone(820,"US");

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

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

Output

Let us compile and run the above program, this will produce the following result.

Hash code is : 820

Getting HashCode of SimpleTimeZone of UK Zone Example

The following example shows the usage of Java SimpleTimeZone hashCode() method to get the hash code of a SimpleTimeZone object. We've created a SimpleTimeZone using UK. Then we've retrieved the hashcode and printed it.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object 
      SimpleTimeZone stobj = new SimpleTimeZone(820,"UK");

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

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

Let us compile and run the above program, this will produce the following result.

Hash code is : 820
java_util_simpletimezone.htm
Advertisements