vote up 11 vote down star

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...

flag

50% accept rate
Isn't that kind of an implementation detail, since the constants JANUARY, FEBRUARY etc. exists? The date classes predates proper java enum support. – gnud Dec 5 '08 at 16:42
Even more annoying - why is there an Undecember? – matt b Dec 5 '08 at 17:04
3  
@gnud: No, it's not an implementation detail. It makes it a pain when you've been given an integer in "natural" base (i.e. Jan=1) and you need to use it with the calendar API. – Jon Skeet Dec 5 '08 at 17:12
1  
@matt b: it's for non-Gregorian calendars (lunar calendars, etc) that have thirteen months. That's why it's best not to think in terms numbers, but let Calendar do it's localization. – sylvarking Dec 5 '08 at 17:37
The 13-month argument makes no sense. If that's so, why not have the extra month be 0 or 13? – Quinn Taylor Aug 11 at 3:23

11 Answers

vote up 21 vote down

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 - which is the basis for the new API in Java 7. Much nicer.

link|flag
...and what's up with deprecating all the useful simple Date methods? Now I have to use that horrible Calendar object in complicated ways to do things that used to be simple. – Brian Knoblauch Dec 5 '08 at 17:22
@Brian: I feel your pain. Again, Joda Time is simpler :) (The immutability factor makes things so much more pleasant to work with, too.) – Jon Skeet Dec 5 '08 at 17:26
1  
Downvoters: reasons? – Jon Skeet May 13 at 21:52
vote up 12 vote down

C based languages copy C to some degree. The tm structure (defined in time.h) has an integer field tm_mon with the (commented) range of 0-11.

C based languages start arrays at index 0. So this was convenient for outputting a string in an array of month names, with tm_mon as the index.

link|flag
vote up 6 vote down

More important: if months are counted from 0 (and they are), why are days counted from 1?

link|flag
Inconsistent though it may be, the days already have "indexes" assigned to them. – sblundy Dec 5 '08 at 16:34
vote up 5 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag
you may call it efficiency. – Milhous Dec 5 '08 at 16:31
1  
No, I wouldn't. It is more important to optimize the efficiency of one's customers than one's programmers. Since this customer is spending time here asking, they failed at that. – DannySmurf Dec 5 '08 at 16:45
It's totally unrelated to efficiency — it's not as if months are stored in an array and you'd need 13 to represent 12 months. It's a matter of not making the API as user-friendly as they should have been in the first place. Josh Bloch rags on Date and Calendar in "Effective Java". Very few APIs are perfect, and the date/time APIs in Java have the unfortunate role of being the ones that were goofed. That's life, but let's not pretend it has anything to do with efficiency. – Quinn Taylor Aug 11 at 3:06
vote up 4 vote down

Probably because C's "struct tm" does the same.

link|flag
vote up 3 vote down

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.

link|flag
This is another of those idioms/habits that go way back to assembler or machine language where everything is done in terms of offsets, not indexes. Array notation became a short cut for accessing contiguous blocks, starting at offset 0. – Ken Gentle Dec 5 '08 at 17:56
vote up 2 vote down

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?

if (date.getMonth() == 3) out.print("March");

if (date.getMonth() == Calendar.MARCH) out.print("March");

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.)

link|flag
But which scheme is more likely to give you a headache when you don't have a constant in your code - you have a value which is the result of a web service call or whatever. – Jon Skeet Dec 5 '08 at 17:28
That web service call should also be using that constant, of course. :-) Same goes for any external caller. Once we've established that multiple standards exist, the need to enforce one becomes evident. (I do hope I understood your comment...) – Paul Brinkley Dec 5 '08 at 18:59
1  
Yes, we should enforce the standard that almost everything else in the world uses when expressing months - the 1-based standard. – Jon Skeet Dec 5 '08 at 19:20
The key word here being "almost". Obviously, Jan=1, etc. feels natural in a date system with extremely wide use, but why allow ourselves to make an exception to avoiding hardcoded constants, in even this one case? – Paul Brinkley Dec 5 '08 at 21:34
1  
Because it makes life easier. It just does. I have never encountered an off-by-one problem with a 1-based month system. I've seen plenty such bugs with the Java API. Ignoring what everyone else in the world does just makes no sense. – Jon Skeet Dec 6 '08 at 7:33
show 1 more comment
vote up 1 vote down

Indexes are zero based in Java.

A calendar is basically an array of months, so it would be inconsistent to start at anything else as all other arrays begin at 0.

link|flag
This doesn't explain however why days aren't 0-based. – matt b Dec 5 '08 at 17:03
True, but that wasn't the question ;-) – Stevo Dec 5 '08 at 17:26
You should have said "String-based indexes are zero based." Solves the above complaint ;-) – JoshFinnie Dec 5 '08 at 19:18
I must disagree that it would be inconsistent to not be zero-based. (Have you ever considered representing New Years' as "2009-00-01"?) If one makes an argument for consistency, shouldn't days of the month also be zero-based, and run from 0 to 27|29|30 instead? The critical flaw in your argument is starting from the assumption that "a calendar is basically an array of months". You may be able to represent it as such, but the end result will never be elegant or sufficiently user-friendly. At least we have defined constants, but even that is needlessly verbose. I say bring on the new API. – Quinn Taylor Aug 11 at 3:13
vote up 1 vote down

In addition to DannySmurf's answer of laziness, I'll add that it's to encourage you to use the constants, such as Calendar.JANUARY.

link|flag
1  
That's all very well when you're explicitly writing the code for a particular month, but it's a pain when you've got the month in "normal" form from a different source. – Jon Skeet Dec 5 '08 at 17:11
vote up 0 vote down

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.

link|flag
The values are one and the same. The APIs may as well return 0, it's identical to the constant. Calendar.JANUARY could have been defined as 1 — that's the whole point. An enum would be a nice solution, but true enums weren't added to the language until Java 5, and Date has been around since the beginning. It's unfortunate, but you really can't "fix" such a fundamental API once third-party code uses it. The best that can be done is to provide new API and deprecate the old one to encourage people to move on. Thank you, Java 7... – Quinn Taylor Aug 11 at 3:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.