嘿,我有一个数字数组列表,当我尝试转换为int
我得到The method intValue() is undefined for the type Object
错误。这是代码片段。
while (1>0) {
a = Integer.parseInt(in.next());
if(a == -999)
break;
else {
list.add(a);
i++;
}
}
int j;
int[] array = new int[list.size()];
for(j=0;j<list.size();j++) {
array[j] = list.get(j).intValue();
}