我可以通过使用像日期 5-6-2018 到 26-9-2018 这样的参数来使用日历吗?我正在寻找很多解决方案,但我没有得到,我需要帮助完成我的作业
不在乎 31 天或 30 天或闰年,只是我需要如何做
public Date(int day, int month, int year) {
this.day = day;
this.month=month;
this.year=year;
}
public void setDay(int day) {
this.day = day;
}
public void setmonth(int month) {
this.month = month;
}
public void setYear(int year) {
this.year = year;
}
public int getDay() {
return day;
}
public int getMonth() {
return month;
}
public int getYear() {
return year;
}
子衿沉夜
相关分类