Java中的 ZonedDateTime withHour() 方法及示例
ZonedDateTime类的withHour()方法,用于更改此 ZonedDateTime 中的小时,并在此操作后返回 ZonedDateTime 的副本。此方法在本地时间线上运行,更改本地日期时间和之后的时间此操作将本地日期时间转换回 ZonedDateTime,使用区域 ID 获取偏移量。转换回 ZonedDateTime 时,如果本地日期时间重叠,则尽可能保留偏移量,否则将使用较早的偏移量。此实例是不可变的,不受此方法调用的影响。
句法:
public ZonedDateTime withHour(int hour)
参数:此方法接受单个参数hour ,它表示要在结果中设置的时间,从 0 到 23。
返回值:此方法基于此日期时间和请求的小时返回ZonedDateTime 。
异常:如果小时值无效,此方法将引发DateTimeException 。
下面的程序说明了 withHour() 方法:
方案一:
// Java program to demonstrate
// ZonedDateTime.withHour() 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 hour: "
+ zoneddatetime);
// alter hour to 20
ZonedDateTime returnvalue
= zoneddatetime.withHour(20);
// print result
System.out.println("ZonedDateTime after "
+ "alter hour: "
+ returnvalue);
}
}
ZonedDateTime before alter hour: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
ZonedDateTime after alter hour: 2018-12-06T20:21:12.123+05:30[Asia/Calcutta]
方案二:
// Java program to demonstrate
// ZonedDateTime.withHour() 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 hour: "
+ zoneddatetime);
// alter hour to 0
ZonedDateTime returnvalue
= zoneddatetime.withHour(0);
// print result
System.out.println("ZonedDateTime after "
+ "alter hour: "
+ returnvalue);
}
}
ZonedDateTime before alter hour: 2018-10-25T23:12:31.123+02:00[Europe/Paris]
ZonedDateTime after alter hour: 2018-10-25T00:12:31.123+02:00[Europe/Paris]
参考: https: Java/time/ZonedDateTime.html#withHour(int)