- 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.Instant.plus() 方法示例
说明
java.time.Instant.plus(long amountToAdd, TemporalUnit unit) 方法返回用指定的时间量添加的此瞬间的副本。
声明
以下是 java.time.Instant.plus(long amountToAdd, TemporalUnit unit) 方法的声明。
public Instant plus(long amountToAdd, TemporalUnit unit)
参数
amountToAdd − 要从结果中添加的单位量,可以为负数。
unit − 要添加的时间量单位,不能为空。
返回值
基于此瞬间的新时间,其中添加了指定时间量,不能为空。
异常
DateTimeException − 如果无法进行添加操作。
UnsupportedTemporalTypeException − 如果不支持该单位。
ArithmeticException − 如果发生数值溢出。
示例
以下示例演示了 java.time.Instant.plus(long amountToAdd, TemporalUnit unit) 方法的使用。
package com.tutorialspoint; import java.time.Instant; import java.time.temporal.ChronoUnit; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.parse("2017-02-03T10:37:30.00Z"); Instant result = instant.plus(10, ChronoUnit.MINUTES); System.out.println(result); } }
让我们编译并运行上述程序,它将产生以下结果 −
2017-02-03T10:47:30Z
广告