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,添加了指定的年份,而不是 null。
异常
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