java.time.Instant.hashCode() Method Example



Description

The java.time.Instant.hashCode() method returns a hash code for this instant.

Declaration

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

public int hashCode()

Return Value

a suitable hash code.

Example

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

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.now();
      System.out.println(instant.hashCode());
   }
}

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

1226468241
Advertisements