Java中的 ZonedDateTime withMonth() 方法及示例
ZonedDateTime类的withMonth()方法,用于更改此 ZonedDateTime 中的月份,并在此操作后返回 ZonedDateTime 的副本。此方法在本地时间线上运行,更改本地日期时间和之后的月份此操作将本地日期时间转换回 ZonedDateTime,使用区域 ID 获取偏移量。转换回 ZonedDateTime 时,如果本地日期时间重叠,则尽可能保留偏移量,否则将使用较早的偏移量。此实例是不可变的,不受此方法调用的影响。
句法:
public ZonedDateTime withMonth(int month)
参数:此方法接受单个参数月份,该参数表示要在结果中设置的月份,从 1(一月)到 12(十二月)。
返回值:此方法基于此日期时间与请求的月份返回ZonedDateTime 。
异常:如果月份值无效,此方法将引发DateTimeException 。
下面的程序说明了 withMonth() 方法:
方案一:
// Java program to demonstrate
// ZonedDateTime.withMonth() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// print instance
System.out.println("ZonedDateTime before"
+ " alter month: "
+ zoneddatetime);
// alter month to 5(May)
ZonedDateTime returnvalue
= zoneddatetime.withMonth(5);
// print result
System.out.println("ZonedDateTime after "
+ "alter month: "
+ returnvalue);
}
}
ZonedDateTime before alter month: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
ZonedDateTime after alter month: 2018-05-06T19:21:12.123+05:30[Asia/Calcutta]
方案二:
// Java program to demonstrate
// ZonedDateTime.withMonth() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// print instance
System.out.println("ZonedDateTime before"
+ " alter month: "
+ zoneddatetime);
// alter month to 12(december)
ZonedDateTime returnvalue
= zoneddatetime.withMonth(12);
// print result
System.out.println("ZonedDateTime after "
+ "alter month: "
+ returnvalue);
}
}
ZonedDateTime before alter month: 2018-10-25T23:12:31.123+02:00[Europe/Paris]
ZonedDateTime after alter month: 2018-12-25T23:12:31.123+01:00[Europe/Paris]
参考: https: Java/time/ZonedDateTime.html#withMonth(int)