LocalDateTime withDayOfMonth() 方法在 Java 中
在 Java 中,LocalDateTime 类的 withDayOfMonth() 方法用于根据需要创建一个 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。然后使用 withDayOfMonth() 方法显示修改为 25 的月份天数的 LocalDateTime。下面是一段演示此方法的代码片段:
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);
广告