当前位置: 代码迷 >> J2SE >> Calendar的有关问题
  详细解决方案

Calendar的有关问题

热度:31   发布时间:2016-04-24 02:01:06.0
Calendar的问题
Calendar c = Calendar.getInstance();
//下面这两行一样么?
c.add(Calendar.WEEK_OF_MONTH, -1);
c.add(Calendar.WEEK_OF_YEAR, -1);

------解决方案--------------------
Adds or subtracts the specified amount of time to the given calendar field, based on the calendar's rules. For example, to subtract 5 days from the current time of the calendar, you can achieve it by calling: 
add(Calendar.DAY_OF_MONTH, -5). 
是的



------解决方案--------------------
WEEK_OF_MONTH是相对于这个月是第几个星期。
WEEK_OF_YEAR是相对于今年是第几个星期。

------解决方案--------------------
没有区别,之所以提供这两个参数时便于你对业务的理解。
  相关解决方案