What is the purpose of having Date and Time classes when there is a DateTime class that can handle both?
|
|
|
With respect to Citation
In short, |
|||||||||||||||||
|
|
I know there is an accepted answer but I have something to add. The Date class is a heavyweigth, academic strength class. It can handle all sorts of RFC's, parse the strangest things and converts julian dates from thousand years ago to gregorian with the reform date of choice. The Time class is lightweigth and it does not know of any of this stuff. It's cheaper and that shows up in a benchmark:
Result:
(Ruby 1.9.2) |
|||||||||||
|
|
To summarize what the common ruby time classes are:
|
|
I just found a use for DateTime today... a calendar/scheduling application which allows the user to create recurring appointments, which should appear at the chosen time of day even when crossing DST boundaries. This is most simply accomplished by using a class which doesn't know anything about DST. – Alex D Jan 20 at 16:01 |
||
@AlexD interesting: that makes sense, since DateTime's time is treated almost like a literal attribute or "fractional part" of the day. Are you aware of the ice_cube gem by the way? I'm currently thinking of stripping DateTime support out of it, but if you have other thoughts on this please add input on github.com/seejohnrun/ice_cube/issues/114 – Andrew Vit Jan 21 at 8:44 |
|||
@AlexD I'd just like to point out that you can do the same thing with a "non-local" Time, e.g. Time.new(,,,,,,"-08:00") which gives a UTC offset but ignores DST. In either case you have to beware that the UTC offset will be wrong half the year, so any comparisons with an actual time (like "now") might be wrong. – Andrew Vit Jan 21 at 9:31 |
|||
I'm doing all calculations in UTC, and then converting to the user's timezone "at the last minute" -- just before displaying results. So I think comparisons with "now" won't be a problem. Thanks for the point about Time.new... I never knew that. – Alex D Jan 21 at 9:52 |
|||
|
Don't use DateTime. Also, I gave a lightning talk at rubyconf 2012 on timezones and went to look at my notes and saw "TODO: Date vs. Time vs. DateTime". gist.github.com/3668333 github.com/bf4/Notes/blob/master/talks_mine/… vimeo.com/53892354 – BF4 Jan 21 at 17:27 |
|
Another way of thinking of this is that
|
|||
|
|
|
Yes. Date handles only the date for something, I.E., March 31, 1989. But it does not handle Time, for example, 12:30 PM. DateTime, can handle both, March 31, 1989 12:30 PM EST. Sometimes you don't need all parts of the DateTime. For example, you wanted to know when the use signed up for you website, Date would be useful here, because the time is eventually irrelevant. In some cases you might want just the time. For example, if it's lunch time, you may want to tell the user your office is closed. At this point, the Data is irrelevant. However, in most cases DateTime is used, because it can be used as either date, time, or both. |
|||||||||||||||
|
