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]