Java Date Time - Instant hashCode() example








Instant hashCode() returns a hash code for this instant.

Syntax

hashCode has the following syntax.

public int hashCode()

Example

The following example shows how to use hashCode.

import java.time.Instant;

public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    System.out.println(instant.hashCode());
    System.out.println(instant.getEpochSecond());
  }
}

The code above generates the following result.