Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not quite sure what field to use when adding more than 30 days to a Java Calendar object. Is there any difference in between Calendar.DAY_OF_MONTH and Calendar.DAY_OF_YEAR?

Example:

GregorianCalendar d = new GregorianCalendar();
d.add(Calendar.DAY_OF_YEAR, 90);

vs

GregorianCalendar d = new GregorianCalendar();
d.add(Calendar.DAY_OF_MONTH, 90);

Thanks.

share|improve this question
You code implies that all months have 30 days. – whiskeysierra Mar 24 '10 at 15:14

1 Answer

up vote 10 down vote accepted

I don't think it makes a difference when you call add. The distinction is important when you call the getters.

Both methods work fine, right? For more than 30 days, as well as negative amounts.

The (admittedly complicated) source for GregorianCalendar#add has this section:

 case DAY_OF_MONTH: // synonym of DATE
 case DAY_OF_YEAR:
 case DAY_OF_WEEK:
    break;
share|improve this answer
Thanks for the source confirmation. – Haes Mar 24 '10 at 7:59
The behaviour of over-/underflow when using the add method is well defined in the API documentation: "Overflow occurs when a field value exceeds its range and, as a result, the next larger field is incremented or decremented and the field value is adjusted back into its range." So overflowing the DAY_OF_MONTH field, means that the MONTH field (next larger) is incremented and the DAY_OF_MONTH field set to 1 (adjusted back into its valid range). – jarnbjo Mar 24 '10 at 10:40
@jarnbjo: and I think the exact same thing happens for DAY_OF_YEAR, DAY_OF_WEEK and DATE. – Thilo Mar 24 '10 at 10:51
@Thilo Is it the same for WEEK_OF_YEAR && WEEK_OF_MONTH in calender.add()?? Ans: Yes, It looks like same in source code "case WEEK_OF_YEAR: == case WEEK_OF_MONTH: == case DAY_OF_WEEK_IN_MONTH:" – Kanagavelu Sugumar Nov 9 '12 at 10:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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