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



说明

java.time.Instant.plusSeconds(long secondsToAdd) 方法返回此瞬时副本,添加以秒为单位指定持续时间。

声明

以下是 java.time.Instant.plusSeconds(long secondsToAdd) 方法的声明。

public Instant plusSeconds(long secondsToAdd)

参数

secondsToAdd − 要添加的秒数,正数或负数。

返回值

基于此瞬时,添加以指定秒为单位的瞬时,非空。

异常

  • DateTimeException − 如果结果超出了最大或最小瞬时。

  • ArithmeticException − 如果出现数字溢出。

示例

以下示例演示如何使用 java.time.Instant.plusSeconds(long secondsToAdd) 方法。

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      Instant result = instant.plusSeconds(10);
      System.out.println(result);   
   }
}

让我们编译并运行上述程序,这将产生以下结果 −

2017-02-03T10:37:40Z
广告