如何修复java.lang.ArrayIndexOutOfBoundsException:4

时间:2017-03-15 11:49:13

标签: java

我正在使用此代码插入2d数组但我保持geeting异常,任何想法?

settings.py

1 个答案:

答案 0 :(得分:0)

您尝试使用arySwap [column]访问arySwap的第四个值,并使用arySwap [column]访问fouth值。像这样更改你的代码:

  int rows=4, columns=4, value=0;
        int[][] arySwap = new int[rows][columns];
        for (int i=0 ; i<rows ; i++){
            for (int j=0 ; j<arySwap[i].length ; j++){
                value = value+1;
                arySwap[i][j]= value;
            }
        }