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