java.time.Instant.adjustInto()方法

2019-10-16 22:39:06

java.time.Instant.adjustInto(Temporal temporal)方法調整指定的時態物件以獲得此瞬間。

宣告

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

public Temporal adjustInto(Temporal temporal)

引數

temporal - 要調整的目標物件,而不是null

返回值

調整後的物件,不為null

異常

DateTimeException - 如果無法進行調整。
ArithmeticException - 如果發生數位溢位。

範例

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

package com.yiibai;

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

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

      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date);  

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");

      date = (ZonedDateTime)instant.adjustInto(date);
      System.out.println(date);  
   }
}

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

2017-03-10T11:10:35.454+05:30[Asia/Calcutta]
2017-02-03T16:07:30+05:30[Asia/Calcutta]