我有以下内容:
Date now = new Date();
Date futureDate = new Date(now.getYear(), now.getMonth(), now.getDay() + 30);
我想根据当前日期(现在)将未来日期值设置为未来 30 天。
当我调试它时,现在是正确的日期,而 futureDate 是:
Sat Jan 05 00:00:00 EST 2013
今天的日期,now 的值为:Sat Dec 29 17:31:58 EST 2012。
这对我来说没有意义吗?
我正在使用 util.Date。