public class Date{ int year, month, day; Date(int year, int month, int day){ this.year = year; this.month = month; this.day = day; System.out.println("Date constructor called."); } }