2013年9月23日 星期一

取得前一天/後一天的時間


currentDate的類別是Time

void preDay() {
this.currentDate.monthDay -= 1;
this.currentDate.normalize(true);

}


void nextDay() {
 this.currentDate.monthDay += 1;
 this.currentDate.normalize(true);

}

沒有留言:

張貼留言