可以使用plusMonths()
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 5 months added is: " + ldt.plusMonths(5)); } }
输出结果
The current LocalDateTime is: 2019-02-16T11:30:28.398 The LocalDateTime with 5 months added is: 2019-07-16T11:30:28.398
现在让我们了解上面的程序。
首先显示当前的LocalDateTime。然后使用该plusMonths()
方法获取添加了5个月的LocalDateTime的不可变副本,并显示出来。演示这的代码片段如下-
LocalDateTime ldt = LocalDateTime.now(); System.out.println("The current LocalDateTime is: " + ldt); System.out.println("The LocalDateTime with 5 months added is: " + ldt.plusMonths(5));