作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到了不同的夏令时开始和结束结果。
ZoneId zone = ZoneId.of("Australia/Melbourne");
System.out.println(ZonedDateTime.of(2019, 04, 07, 3, 0, 0, 0, zone)); // statement-1
System.out.println(ZonedDateTime.of(2019, 10, 06, 2, 0, 0, 0, zone)); // statement-2
最佳答案
看着 DST transitions for Australia/Melbourne ,由于夏令时更改,时钟从未在 2019 年 10 月 6 日 02:00。这就是 DST 的工作原理:在 01:59:59.999999 之后,时钟跳到 03:00:00.000000。
这记录在 ZonedDateTime.of javadoc 中:
In the case of a gap, when clocks jump forward, there is no valid offset. Instead, the local date-time is adjusted to be later by the length of the gap. For a typical one hour daylight savings change, the local date-time will be moved one hour later into the offset typically corresponding to "summer".
关于java - java 8 中澳大利亚/墨尔本时区的日期时间日光节约问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60885885/
我是一名优秀的程序员,十分优秀!