Clock hashCode() example

Description

Clock hashCode() returns the hash code for this clock.

Syntax

hashCode has the following syntax.


public int hashCode()

Example

The following example shows how to use hashCode.


import java.time.Clock;
// w w  w.ja  va 2s. c  o m
public class Main {
  public static void main(String[] args) {
    Clock clock = Clock.systemUTC();
    Clock clock1 = Clock.systemDefaultZone();
    System.out.println(clock.hashCode());
    System.out.println(clock1.hashCode());
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset