In java.util.Calendar, January is defined as month 0, not month 1. Is there any specific reason to that ?
I have seen many people getting confused about that...
|
|
It's just part of the horrendous mess which is the Java date/time API. Listing what's wrong with it would take a very long time (and I'm sure I don't know half of the problems). Admittedly working with dates and times is tricky, but aaargh anyway. Do yourself a favour and use Joda Time instead, or possibly JSR-310. EDIT: As for the reasons why - as noted in other answers, it could well be due to old C APIs, or just a general feeling of starting everything from 0... except that days start with 1, of course. I doubt whether anyone outside the original implementation team could really state reasons - but again, I'd urge readers not to worry so much about why bad decisions were taken, as to look at the whole gamut of nastiness in One point which is in favour of using 0-based indexes is that it makes things like "arrays of names" easier:
Of course, this fails as soon as you get a calendar with 13 months... but at least the size specified is the number of months you expect. This isn't a good reason, but it's a reason... EDIT: As a comment sort of requests some ideas about what I think is wrong with Date/Calendar:
|
|||||||||||||||||||
|
|
C based languages copy C to some degree. The C based languages start arrays at index 0. So this was convenient for outputting a string in an array of month names, with |
|||
|
|
|
More important: if months are counted from 0 (and they are), why are days counted from 1? |
|||||||||||||||||
|
|
There has been alot of answers to this, but I will give my view on the subject anyway.
The reason behind this odd behavior, as stated previously, comes from the POSIX C The day numbers on the other hand, since they do not have names, storing them in an int as 0-30 would be confusing, add alot of That being said, the inconsistency is confusing, especially in javascript (which also has inherited this "feature"), a scripting language where this should be abstracted far away from the langague. TL;DR: Because months have names and days of the month do not. |
||||
|
|
In Java 7, we should have a new Date/Time API JSR 310 that is more sane. The spec lead is the same as the primary author of JodaTime and they share many similar concepts and patterns. UPDATE: Sadly, it looks like JSR 310 will not make it into Java 7. |
||||
|
|
|
I'd say laziness. Arrays start at 0 (everyone knows that); the months of the year are an array, which leads me to believe that some engineer at Sun just didn't bother to put this one little nicety into the Java code. |
|||||||||||||
|
|
Because programmers are obsessed with 0-based indexes. OK, it's a bit more complicated than that: it makes more sense when you're working with lower-level logic to use 0-based indexing. But by and large, I'll still stick with my first sentence. |
|||||
|
|
Personally, I took the strangeness of the Java calendar API as an indication that I needed to divorce myself from the Gregorian-centric mindset and try to program more agnostically in that respect. Specifically, I learned once again to avoid hardcoded constants for things like months. Which of the following is more likely to be correct?
This illustrates one thing that irks me a little about Joda Time - it may encourage programmers to think in terms of hardcoded constants. (Only a little, though. It's not as if Joda is forcing programmers to program badly.) |
|||||||||||||||||
|
|
For me, nobody explains it better than mindpro.com:
|
|||
|
|
|
In addition to DannySmurf's answer of laziness, I'll add that it's to encourage you to use the constants, such as |
|||||||
|
|
It isn't exactly defined as zero per se, it's defined as Calendar.January. It is the problem of using ints as constants instead of enums. Calendar.January == 0. |
|||||
|