Java 中 LocalDate 的 plusYears() 方法
在 Java 中 LocalDate 类的 plusYears() 方法可用来获取不可变的 LocalDate 副本,并将年份添加到 LocalDate 副本中。此方法需要一个参数,即要添加的年份数,并返回添加了年份的 instant。
演示此方法的程序如下 −
示例
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() 方法获取一个不可变的 LocalDate 副本,并在其中添加 3 年,并显示该副本。演示此方法的代码片段如下 −
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);
广告