java.time.ZonedDateTime.plus() 方法示例



说明

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

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]
广告