当前位置: 技术问答>java相关
奇怪的日期问题,请高手解释
来源: 互联网 发布时间:2015-01-07
本文导语: 1 int year = calendar.get(Calendar.YEAR); 2 int month = calendar.get(Calendar.MONTH); 3 cboYear.setSelectedIndex(year-1900); 4 cboMonth.setSelectedIndex(month); debug跟踪时,year=2001,month=5,但当执行到第3句时,单步跟踪又到...
1 int year = calendar.get(Calendar.YEAR);
2 int month = calendar.get(Calendar.MONTH);
3 cboYear.setSelectedIndex(year-1900);
4 cboMonth.setSelectedIndex(month);
debug跟踪时,year=2001,month=5,但当执行到第3句时,单步跟踪又到了第1句,
而且month的值变成了0,即month=0, (year还等于2001),为什么!!!我晕了
2 int month = calendar.get(Calendar.MONTH);
3 cboYear.setSelectedIndex(year-1900);
4 cboMonth.setSelectedIndex(month);
debug跟踪时,year=2001,month=5,但当执行到第3句时,单步跟踪又到了第1句,
而且month的值变成了0,即month=0, (year还等于2001),为什么!!!我晕了
|
要设定时区的!
|
3.4.句是做什么用的?
|
呵呵,明白了。
|
hoho,我也明白了