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