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



说明

java.time.Instant.plus(TemporalAmount amountToAdd) 方法返回已添加指定时间量此 instant 的副本。

声明

以下是 java.time.Instant.plus(TemporalAmount amountToAdd) 方法的声明。

public Instant plus(TemporalAmount amountToAdd)

Instant plus(TemporalAmount amountToAdd)

参数

amountToAdd - 要添加的时间量,非 null。

返回值

一个 Instant,基于此 instant,加上指定的时间量,非 null。

  • 异常

  • DateTimeException - 如果无法进行添加。

ArithmeticException - 如果出现数字上溢。

示例

package com.tutorialspoint;

import java.time.Instant;
import java.time.Duration;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      Duration duration = Duration.ofHours(5); 
      Instant result = instant.plus(duration);
      System.out.println(result);  
   }
}

直接观看示例

2017-02-03T15:37:30Z
打印页面
广告