证明 310 OffsetDate 类型合理的用例有哪些?
OffsetDate 表示带有区域偏移量的日期。我不明白这个类的用途,证明它存在的主要用例是什么?
OffsetDate represents a date with a zone offset. I don't understand the purpose this class serves, what are the main use cases justifying its existence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在分析日期和时间的基本组成部分时,有四个基本元素:
这些自然形成七个类别:
(只有在知道日期和时间的情况下才能使用时区,因此有不是 ZonedDate 或 ZonedTime 类)
前六种形式直接匹配 XML schema 定义,这实际上证明了它们的存在。在应用程序设计方面,我怀疑
OffsetDate
将是七个类中使用最少的。更新:2013 年 1 月 24 日:OffsetDate 不会出现在 JDK 1.8 中。
When analysing the basic components of dates and times there are four basic elements:
These naturaly form seven classes:
(a time-zone can only be used if you know the date and the time, so there is no ZonedDate or ZonedTime class)
The first six forms directly match XML schema definitions, which in effect justifies their existence. In application design terms I suspect that
OffsetDate
will be the least used of the seven classes.Update: 2013-01-24: OffsetDate won't be in JDK 1.8.