Java中的LocalDateTime plusYears()方法

可以使用plusYears()Java中LocalDateTime类中的方法来获取LocalDateTime对象的不可变副本,在其中添加了一些年份。此方法需要一个参数,即要添加的年数,并且它返回带有已添加年数的LocalDateTime对象。

演示此的程序如下所示-

示例

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      LocalDateTime ldt = LocalDateTime.now();
      System.out.println("The current LocalDateTime is: " + ldt);
      System.out.println("The LocalDateTime with 2 years added is: " + ldt.plusYears(2));
   }
}

输出结果

The current LocalDateTime is: 2019-02-18T10:20:27.152
The LocalDateTime with 2 years added is: 2021-02-18T10:20:27.152

现在让我们了解上面的程序。

首先显示当前的LocalDateTime。然后,使用该plusYears()方法获得LocalDateTime的不可变副本(其中添加了2年)并显示出来。演示这的代码片段如下-

LocalDateTime ldt = LocalDateTime.now();
System.out.println("The current LocalDateTime is: " + ldt);
System.out.println("The LocalDateTime with 2 years added is: " + ldt.plusYears(2));