java.time.Duration.plusSeconds()方法

2019-10-16 22:42:06

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