📅  最后修改于: 2023-12-03 15:16:27.808000             🧑  作者: Mango
在Java中,YearMonth
类提供了一系列用于操作年份和月份的方法。其中,plusYears()
方法用于返回增加指定年数后的YearMonth
对象。该方法将当前的YearMonth
对象不变地增加指定的年数,返回一个新的YearMonth
对象。
public YearMonth plusYears(long years)
years
:要增加的年数,可以是负数。增加指定年数后的YearMonth
对象。
下面是一个使用plusYears()
方法的示例:
import java.time.YearMonth;
public class Main {
public static void main(String[] args) {
YearMonth currentYearMonth = YearMonth.now();
System.out.println("当前年月: " + currentYearMonth);
YearMonth futureYearMonth = currentYearMonth.plusYears(2);
System.out.println("增加2年后: " + futureYearMonth);
YearMonth pastYearMonth = currentYearMonth.plusYears(-3);
System.out.println("减少3年后: " + pastYearMonth);
}
}
输出结果:
当前年月: 2022-12
增加2年后: 2024-12
减少3年后: 2019-12
在上述示例中,首先获取当前的年月信息。然后使用plusYears()
方法增加2年,获取增加后的年月信息,并打印输出。接着使用plusYears()
方法减少3年,获取减少后的年月信息,并打印输出。
注意:示例中的输出结果可能因为当前日期而有所变化。
以上就是关于Java中的YearMonth plusYears()
方法的介绍和示例。
本回答由智能助手完成