java.time.Instant.plusSeconds(long secondsToAdd)
方法返回此瞬間的副本,並新增指定的持續時間(以秒為單位)。
以下是java.time.Instant.plusSeconds(long secondsToAdd)
方法的宣告。
public Instant plusSeconds(long secondsToAdd)
secondsToAdd
- 新增的秒數,正數或負數。基於此瞬間的Instant
,新增了指定的秒數,而不是null
。
DateTimeException
- 如果結果超過最大或最小瞬間。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.Instant.plusSeconds(long secondsToAdd)
方法的用法。
package com.yiibai;
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