Java中的LocalDateTime withDayOfMonth()方法
使用withDayOfMonth()
Java中LocalDateTime类中的方法可以完成LocalDateTime的不可变副本,并根据需要更改月份中的日期。此方法需要一个参数,即要在LocalDateTime中设置的星期几,它会返回LocalDateTime,并根据需要更改该月的某天。
演示此的程序如下所示-
示例
import java.time.*; public class Main { public static void main(String[] args) { LocalDateTime ldt1 = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt1); LocalDateTime ldt2 = ldt1.withDayOfMonth(25); System.out.println("The LocalDateTime with day of month altered is: " + ldt2); } }
输出结果
The LocalDateTime is: 2019-02-18T23:15:30 The LocalDateTime with day of month altered is: 2019-02-25T23:15:30
现在让我们了解上面的程序。
首先显示LocalDateTime。然后,使用方法显示将星期几更改为25的LocalDateTimewithDayOfMonth()
。演示这的代码片段如下-
LocalDateTime ldt1 = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt1); LocalDateTime ldt2 = ldt1.withDayOfMonth(25); System.out.println("The LocalDateTime with day of month altered is: " + ldt2);