java.time.YearMonth.plusYears(long years)方法

2019-10-16 22:36:02

java.time.YearMonth.plusYears(long years)方法返回此YearMonth的副本,並新增了指定的年份。

宣告

以下是java.time.YearMonth.plusYears(long years)方法的宣告。

public YearMonth plusYears(long years)

引數

  • years - 新增的年份,正或負值。

返回值

基於此YearMonth新增了指定的年份的YearMonth,而不是null

例外

  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.YearMonth.plusYears(long years)方法的用法。

package com.yiibai;

import java.time.YearMonth;

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

      YearMonth date = YearMonth.parse("2017-12");
      YearMonth date1 = date.plusYears(10);
      System.out.println(date1);   
   }
}

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

2027-12