java.time.Instant.ofEpochMilli()方法

2019-10-16 22:39:33

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

宣告

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

public static Instant ofEpochMilli(long epochMilli)

引數

  • epochMilli - 從1970-01-01T00:00:00Z開始的毫秒數。

返回值

瞬間,不是null

例外

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

範例

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

package com.yiibai;

import java.time.Instant;

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

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

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

1970-01-01T00:00:10Z