首先我把...列表<Integer>錯誤
List<int> age = new ArrayList<int>();
for (int i = 1; i <= 100; ++i) {
age.add(i);
}
JComboBox ageComboBox = new JComboBox(age);
我得到的錯誤是...預期此令牌後,令牌INT尺寸語法錯誤......在兩個人的。
因此,採取由Eclipse的我提供建議後...
ArrayList<Integer> ageList = new ArrayList<Integer>();
for (int i = 1; i <= 100; ++i) {
ageList.add(i);
}
JComboBox<ArrayList<Integer>> ageEntries = new JComboBox<ArrayList<Integer>>(ageList);
爲什麼我不能放在ageList到的JComboBox?
錯誤:構造函數的JComboBox>(ArrayList的)是未定義
您會得到什麼錯誤? – birryree 2012-02-19 00:15:42