java.time.YearMonth.plusYears() 方法示例



描述

java.time.YearMonth.plusYears(long years) 方法返回一个年份增加指定数量的副本本 YearMonth。

声明

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

public YearMonth plusYears(long years)

参数

years − 要添加的年份,可以是正数或负数。

返回值

一个基于此 YearMonth,且年份增加了指定数量的 YearMonth,非空。

异常

ArithmeticException − 如果出现数值溢出。

示例

以下示例演示了如何使用 java.time.YearMonth.plusYears(long years) 方法。

package com.tutorialspoint;

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
广告