java.time.ZonedDateTime.plusSeconds(long seconds)方法

2019-10-16 22:34:23

java.time.ZonedDateTime.plusSeconds(long seconds)方法返回此日期時間並新增指定秒數副本。

宣告

以下是java.time.ZonedDateTime.plusSeconds(long seconds)方法的宣告。

public ZonedDateTime plusSeconds(long seconds)

引數

  • seconds - 新增的秒數可能是負數。

返回值

基於此日期時間新增秒數的ZonedDateTime,而不是null

例外

  • DateTimeException - 如果結果超出支援的日期範圍。

範例

以下範例顯示了java.time.ZonedDateTime.plusSeconds(long seconds)方法的用法。

package com.yiibai;

import java.time.ZonedDateTime;

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      System.out.println(date.plusSeconds(20));  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

2017-03-28T12:25:58.492+05:30[Asia/Calcutta]