On Java 7 (Java 6 not tested):
import java.util.Date;
public class Main {
public static void main(String[] args) {
Date test=new Date(2012, 12, 12);
System.out.println("test=" + test.toString());
}
}
gives me
test=Sun Jan 12 00:00:00 CET 3913
Note the year: 3913, which is different from the year (2012) I passed.
Is this a bug or am I missing something?
(Yes, I know that the Date constructor I am using is deprecated.)
Calendaris not zero based at all. – BalusC Jan 4 at 1:48