java.time.Duration.plusSeconds(long secondsToAdd)
方法返回此持續時間的副本,並新增指定的持續時間(以秒為單位)。
以下是java.time.Duration.plusSeconds(long secondsToAdd)
方法的宣告。
public Duration plusSeconds(long secondsToAdd)
secondsToAdd
- 新增的秒數,正數或負數。持續時間基於此持續時間並新增指定的秒數,而不是null
。
ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.Duration.plusSeconds(long secondsToAdd)
方法的用法。
package com.yiibai;
import java.time.Duration;
public class DurationDemo {
public static void main(String[] args) {
Duration duration = Duration.ofSeconds(2);
Duration duration1 = duration.plusSeconds(1);
System.out.println(duration1.toMillis());
}
}
編譯並執行上面的程式,這將產生以下結果 -
3000