java.time.OffsetTime.adjustInto()方法

java.time.OffsetTime.adjustInto(Temporal temporal)方法將指定的時態對象調整為與此對象具有相同的時間。

聲明

以下是java.time.OffsetTime.adjustInto(Temporal temporal)方法的聲明。

public Temporal adjustInto(Temporal temporal)

參數

  • temporal - 要調整的目標對象,而不是null

返回值

調整後的對象,不為空。

異常

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

示例

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

package com.zaixian;

import java.time.OffsetTime;
import java.time.ZonedDateTime;

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

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

      OffsetTime date1 = OffsetTime.parse("12:30:30+01:00");
      date = (ZonedDateTime)date1.adjustInto(date);
      System.out.println(date);
   }
}

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

2017-03-21T16:58:09.052+05:30[Asia/Calcutta]
2017-03-21T12:30:30+05:30[Asia/Calcutta]

上一篇: java.time.OffsetTime類 下一篇: java.time.Period類