For the following snippet
GregorianCalendar a = new GregorianCalendar(2009, 11, 10);
System.out.println(a.getTime()); // Thu Dec 10 00:00:00 ICT 2009
a.add(Calendar.MONTH, 1);
System.out.println(a.getTime()); // Sun Jan 10 00:00:00 ICT 2010
When I change this line
a.add(Calendar.MONTH, 1);
into this line
a.set(Calendar.MONTH, a.get(Calendar.MONTH) + 1);
It returns the same result
// Sun Jan 10 00:00:00 ICT 2010
If it is December 2009, I thought set it to month + 1 (i.e January), the month should now be Januray 2009. But it is January 2010 instead.
So, what is the difference between set and add in this case?
addincrements.setsets – Jan Dvorak Oct 22 '12 at 5:37