java.time.ZonedDateTime.plusYears(long yearsToAdd)
方法返回此日期時間並新增了指定的年份的副本。
以下是java.time.ZonedDateTime.plusYears(long yearsToAdd)
方法的宣告。
public ZonedDateTime plusYears(long yearsToAdd)
yearsToAdd
- 新增的年份,可能是負值。基於此日期時間新增年份的ZonedDateTime
,而不是null
。
DateTimeException
- 如果結果超出支援的日期範圍。以下範例顯示了java.time.ZonedDateTime.plusYears(long yearsToAdd)
方法的用法。
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.plusYears(2));
}
}
編譯並執行上面的程式,這將產生以下結果 -
2019-03-28T12:25:38.492+05:30[Asia/Calcutta]