java.time.ZonedDateTime.plus(long amountToAdd,TemporalUnit unit)
方法返回此日期時間新增了指定的數量的副本。
以下是java.time.ZonedDateTime.plus(long amountToAdd,TemporalUnit unit)
方法的宣告。
public ZonedDateTime plus(long amountToAdd, TemporalUnit unit)
amountToAdd
- 要新增到結果中的單位數量可能為負數。unit
- 要新增的金額的單位,而不是null
。基於此日期時間新增了指定的數量的ZonedDateTime
,而不是null
。
DateTimeException
- 如果無法新增。UnsupportedTemporalTypeException
- 如果不支援該單位。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.ZonedDateTime.plus(long amountToAdd,TemporalUnit unit)
方法的用法。
package com.yiibai;
import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
ZonedDateTime date1 = date.plus(10, ChronoUnit.DAYS);
System.out.println(date1);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-04-07T12:25:38.492+05:30[Asia/Calcutta]