可以使用plusYears()
Java中LocalDate类中的方法获得添加了年份的LocalDate的不可变副本。此方法需要一个参数,即要添加的年数,并且它返回带有已添加年数的瞬间。
演示此的程序如下所示-
import java.time.*; public class Demo { public static void main(String[] args) { LocalDate ld1 = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld1); LocalDate ld2 = ld1.plusYears(3); System.out.println("The LocalDate after adding 3 years is: " + ld2); } }
输出结果
The LocalDate is: 2019-02-14 The LocalDate after adding 3 years is: 2022-02-14
现在让我们了解上面的程序。
首先,显示LocalDate。然后,使用该plusYears()
方法获得添加了3年的LocalDate的不变副本,并将其显示出来。演示这的代码片段如下-
LocalDate ld1 = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld1); LocalDate ld2 = ld1.plusYears(3); System.out.println("The LocalDate after adding 3 years is: " + ld2);