package edu.vccs.nvwpegram; public class Date2 { private int month; private int day; public Date2(int month, int day) { this.month = month; this.day = day; } public Date2() { this(0,0);} // this references 2-argument consructor in class public int getMonth() {return month;} }