I prepared Date and DateTest classes which show below;
Date Class
public Date( String m, int d, int y)
{
this("m",d,y);
}
DateTest Class
Date myDate2 = new Date("april",18 , 2013);
System.out.println(myDate2);
But I receive below error message. Can anyone advise me what the problem is and how I can fix it.
Error Message Exception in thread "main" java.lang.Error: Unresolved compilation problem: Recursive constructor invocation Date(String, int, int)
at Date.<init>(Date.java:24)
at DateTest.main(DateTest.java:10)