- java.time 包类
- java.time - 首页
- java.time - 时钟
- java.time - 持续时间
- java.time - 即时
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月份天数
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年份
- java.time - 年月
- java.time - 区域化日期时间
- java.time - 时区 ID
- java.time - 时区偏移量
- java.time 包枚举值
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
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]
广告