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?
feedback
|
|
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. | |||||||||||||||||
feedback
|
|
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. | |||||||||||||
feedback
|
|
Date is best for storing a date object. It is the persisted one, the Serialized one ... Calendar is best for manipulating Dates.
| |||||
|
feedback
|
| |||||||||||
feedback
|
|
(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.) | |||||
feedback
|
|
I always advocate Joda-time. Here's why.
| |||||
feedback
|
|
I generally use Date if possible. Although it is mutable, the mutators are actually deprecated. In the end it basically wraps a long that would represent the date/time. Conversely, I would use Calendars if I have to manipulate the values. You can think of it this way: you only use StringBuffer only when you need to have Strings that you can easily manipulate and then convert them into Strings using toString() method. In the same way, I only use Calendar if I need to manipulate temporal data. For best practice, I tend to use immutable objects as much as possible outside of the domain model. It significantly reduces the chances of any side effects and it is done for you by the compiler, rather than a JUnit test. You use this technique by creating private final fields in your class. And coming back to the StringBuffer analogy. Here is some code that shows you how to convert between Calendar and Date
| ||||
|
feedback
|
|
I've created a Time class for easy Date and Time manipulation, source and documentation is found on: https://github.com/knyttl/Maite/wiki/Maite-Date-and-Time It allows date and time handling and formatting as for instance:
| |||
|
feedback
|