- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 瞬时
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月份日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年份
- java.time - 年份月
- java.time - 区域日期时间
- java.time - 区域 ID
- java.time - 区域偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
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
广告