我正在嘗試運行此代碼,並且我一直收到ArrayIndexOutOfBound
異常錯誤。Java ArrayIndexOutOfBound異常
public class Heisenberg {
public static void main(String[] args) {
int[] array1 = new int[5];
int[] array2 = new int[5];
Ext(-1, 10, array1, array2);
}
public static void Ext(int q, int w, int[] e, int[] r) {
if (q >= 0)
e[q] = w;
r[q] = w;
}
}
我對數組有點不熟悉,所以對所有幫助表示讚賞。 enter code here