首页上一页 1 下一页尾页 1 条记录 1/1页
《java从入门到精通(第一版)》
发表在Java图书答疑
2010-11-01
是否精华
是
否
版块置顶:
是
否
在该书的28章是一个进销存管理系统,有这样一个模块销售排行即
XiaoShouPaiHang.java
创建了一个对象:private Calendar date = Calendar.getInstance();
Calendar表示的是什么?还有这样两个循环:
for (int i = 1981, j = 0; i <= date.get(Calendar.YEAR) + 1; i++, j++) {
year.addItem(i);
if (i == date.get(Calendar.YEAR))
year.setSelectedIndex(j);
}
}
for (int i = 1; i <= 12; i++) {
month.addItem(String.format("%02d", i));
if (date.get(Calendar.MONTH) == i)
month.setSelectedIndex(i - 1);
能不能把这两个循环详细地解释一下,谢谢!!
XiaoShouPaiHang.java
创建了一个对象:private Calendar date = Calendar.getInstance();
Calendar表示的是什么?还有这样两个循环:
for (int i = 1981, j = 0; i <= date.get(Calendar.YEAR) + 1; i++, j++) {
year.addItem(i);
if (i == date.get(Calendar.YEAR))
year.setSelectedIndex(j);
}
}
for (int i = 1; i <= 12; i++) {
month.addItem(String.format("%02d", i));
if (date.get(Calendar.MONTH) == i)
month.setSelectedIndex(i - 1);
能不能把这两个循环详细地解释一下,谢谢!!