java.time.ZonedDateTime.plus(long amountToAdd, TemporalUnit unit)方法

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.zaixian;

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]

上一篇: java.time.ZonedDateTime类 下一篇: java.time.ZoneId类