(MyDate date)
| 53 | } |
| 54 | |
| 55 | private boolean isValid(MyDate date) { |
| 56 | if(date.getYear()==-1 || date.getMonth()==-1 || date.getDay()==-1) |
| 57 | return false; |
| 58 | |
| 59 | return (1<=date.getMonth() && date.getMonth()<=12) && (1<=date.getDay() && date.getDay()<=31); // 간단히 체크 |
| 60 | } |
| 61 | } |