Could someone please advise the current "best practice" around Date and Calendar types.
When writing new code, is it best to always favour Calendar over Date, or are there circumstances where Date is the more appropriate datatype?
|
4
|
Could someone please advise the current "best practice" around Date and Calendar types. When writing new code, is it best to always favour Calendar over Date, or are there circumstances where Date is the more appropriate datatype?
|
||||
|
|
|
Date is a simpler class and is mainly there for backward compatibility reasons. If you need to set particular dates or do date arithmetic, use a Calendar. Calendars also handle localization. The previous date manipulation functions of Date have since been deprecated. Personally I tend to use either time in milliseconds as a long (or Long, as appropriate) or Calendar when there is a choice. Both Date and Calendar are mutable, which tends to present issues when using either in an API. |
||||||||
|
|
|
Is it a good practice to pass Calendar instance in your public api ? |
||
|
|
|
|
(And yes, I know Date isn't actually technically immutable, but the intention is that it should not be mutable, and if nothing calls the deprecated methods then it is so.) |
||
|
|
|
|
I always advocate Joda-time. Here's why.
|
||||
|
|
|
|
||||||||
|
|
|
The best way for new code (if your policy allows third-party code) is to use the Joda Time library. Both, Date and Calendar, have so much design problems that both are not good solutions for new code. |
||||||||||
|
|
|
Date is best for storing a date object. It is the persisted one, the Serialized one ... Calendar is best for manipulating Dates.
|
|||