Java中的 LocalDateTime withMonth() 方法及示例
Java中LocalDateTime 类的withMonth()方法用于获取此 LocalDateTime 的副本,其中月份更改为作为参数传递给此方法的月份。此 LocalDateTime 的其余值保持不变。
句法:
public LocalDateTime withMonth(int months)
参数:此方法接受一个强制参数months ,它指定要在结果LocalDateTime 实例中设置的月份。这个月份的值可以在 1 到 12 之间。
返回:该函数返回一个LocalDateTime 实例,其中月份更改为作为参数传递给此方法的月份。此 LocalDateTime 的其余值保持不变。
异常:如果月份值无效,该函数将引发DateTimeException 。
下面的程序说明了 LocalDateTime.withMonth() 方法:
方案一:
// Program to illustrate the withMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Get the LocalDateTime instance
LocalDateTime dt = LocalDateTime.now();
// Get the String representation of this LocalDateTime
System.out.println("Original LocalDateTime: "
+ dt.toString());
// Get a new LocalDateTime with months 5
System.out.println("New LocalDateTime: "
+ dt.withMonth(5));
}
}
输出:
Original LocalDateTime: 2018-11-30T12:51:39.472
New LocalDateTime: 2018-05-30T12:51:39.472
方案二:
// Program to illustrate the withMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Get the LocalDateTime instance
LocalDateTime dt
= LocalDateTime
.parse("2015-04-06T10:15:30");
// Get the String representation of this LocalDateTime
System.out.println("Original LocalDateTime: "
+ dt.toString());
// Get a new LocalDateTime with months 12
System.out.println("New LocalDateTime: "
+ dt.withMonth(12));
}
}
输出:
Original LocalDateTime: 2015-04-06T10:15:30
New LocalDateTime: 2015-12-06T10:15:30
参考: https: Java/time/LocalDateTime.html#withMonth(int)