我应该使用 GregorianCalendar 还是 Date 作为生日字段?
我对使用类 GregorianCalendar
和 Date
有点困惑。
有什么区别?
例如:我在 Person 对象中有一个字段,表示他的出生日期。 我必须使用 Date
或 GregorianCalendar
吗?
它们的最佳用途是什么?
I'm a little bit confused about using the class GregorianCalendar
and Date
.
What is the difference?
For instance: I have a field in a Person object that represents the date he was born.
Do I have to use Date
or GregorianCalendar
?
What is the best use for them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在纸上写下详细信息,您会将出生日期写为日期,还是会写下日期周围带有圆圈的日历?
你会写下日期。 Date 是一个具体的日期。 Calendar 是一个用于处理日期的工具。
If you were writing down the details on paper, would you write down the date of birth as a date, or would you write down a calendar with a circle around the date?
You would write down the date. Date is a concrete date. Calendar is a tool for working with dates.
我会用 Date 来表示出生日期。
使用日历(和子类)来操作日期。
I would use Date to represent the date of birth.
Use Calendar (and child classes) to manipulate dates.
Date 和 Calendar 类都存在 API 较差的问题。您应该使用 Joda Time 库。
Both Date and Calendar classes suffer from poor APIs. You should use the Joda Time library instead.