java.time.Instant.from()方法

2019-10-16 22:39:13

java.time.Instant.from(TemporalAccessor temporal)方法從時態物件獲取Instant的範例。

宣告

以下是java.time.Instant.from(TemporalAccessor temporal)方法的宣告。

public static Instant from(TemporalAccessor temporal)

引數

  • temporal - 要轉換的時間物件,而不是null

返回值

瞬間,不是null

異常

  • DateTimeException - 如果無法轉換為Instant

範例

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

package com.yiibai;

import java.time.Instant;
import java.time.ZonedDateTime;

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

      ZonedDateTime zonedDateTime = ZonedDateTime.now();

      Instant instant = Instant.from(zonedDateTime);

      System.out.println(instant);
   }
}

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

2017-03-10T09:29:03.044Z