當我試圖將temp
的值放入int[] unDupe
的i
位置時,問題似乎在我的for
循環內。我得到的錯誤:爲什麼我會收到「ArrayIndexOutOfBoundsException:0」?
'Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at main.Main.main(Main.java:33)'
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int[] unDupe = {};
System.out.print("Enter a number sequence (eg. '1 2 10 20'): ");
String dupe = input.nextLine();
String[] dupeSplit = dupe.split(" ");
int temp;
for(int i = 0; i < dupeSplit.length; i++){
temp = Integer.parseInt(dupeSplit[i]);
unDupe[i] = temp; // line 33
}
}
後
你沒有分配的數組的任何元素。 – OldProgrammer 2014-10-08 20:41:20
Java數組的長度固定,創建後不能更改大小。如果你不知道你需要的最大長度,你可能需要爲「最糟糕的情況」分配數組,或者使用類似ArrayList的非固定長度的東西。 – 2014-10-08 20:45:51