java.time.Clock.hashCode() Method Example



Description

The java.time.Clock.hashCode() method gets the time-zone being used to create dates and times.

Declaration

Following is the declaration for java.time.Clock.hashCode() method.

public int hashCode()

Return Value

A hash code for this clock.

Example

The following example shows the usage of java.time.Clock.hashCode() method.

package com.tutorialspoint;

import java.time.Clock;

public class ClockDemo {
   public static void main(String[] args) {
   
      Clock clock = Clock.systemDefaultZone();
      Clock clock1 = Clock.systemUTC();
      System.out.println("Clock 1 Hash Code: " + clock.hashCode());
      System.out.println("Clock 2 Hash Code: " + clock1.hashCode());
   }
}

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

Clock 1 Hash Code: -681304889
Clock 2 Hash Code: 1
Advertisements