数字の配列リストがあり、変換しようとすると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();
}