java.time.Instant.ofEpochSecond()方法

2019-10-16 22:39:35

java.time.Instant.ofEpochSecond(long epochSecond)方法使用1970-01-01T00:00:00Z的紀元中的秒來獲取Instant的範例。

宣告

以下是java.time.Instant.ofEpochSecond(long epochSecond)方法的宣告。

public static Instant ofEpochSecond(long epochSecond)

引數

epochSecond - 1970-01-01T00:00:00Z的秒數。

返回值

瞬間,不是null

異常

  • DateTimeException - 如果瞬間超過最大或最小瞬間。

範例

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

package com.yiibai;

import java.time.Instant;

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

      Instant instant = Instant.ofEpochSecond(10000);
      System.out.println(instant);   
   }
}

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

1970-01-01T02:46:40Z