java.time.Instant.hashCode()方法

2019-10-16 22:39:19

java.time.Instant.hashCode()方法返回此瞬間的雜湊碼。

宣告

以下是java.time.Instant.hashCode()方法的宣告。

public int hashCode()

返回值

合適的雜湊碼。

範例

以下範例顯示了java.time.Instant.hashCode()方法的用法。

package com.yiibai;

import java.time.Instant;

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

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

編譯並執行上面的程式,這將產生以下結果 -

1226468241