gpt4 book ai didi

java - 每次有 2 个元素的 for 循环中数组索引超出范围

转载 作者:行者123 更新时间:2023-12-01 09:24:33 25 4
gpt4 key购买 nike

任务是将二维数组转换为简单数组,我尝试通过 for 循环将原始数组的元素复制到新数组,例如

public static void main(String[] args) {
int[][] a = new int[5][8];
//initialize the 2-dimensional array with random number range(1~100)
assignNestedArray(a);
printNestedArray(a);
int[] arr=new int[a.length*a[0].length];
for(int i=0,k=0;i<a.length;++i,k+=a[i].length){
System.arraycopy(a[i], 0, arr, k, a[i].length);
}
System.out.println(Arrays.toString(arr));
}

public static void printNestedArray(int[][] a){
for (int[] sub_arr : a) {
for (int v : sub_arr)
System.out.print(v+" ");
System.out.println();
}
}

public static void assignNestedArray(int[][] a){
for (int i = 0; i < a.length; ++i)
for (int j = 0; j < a[i].length; ++j)
a[i][j] = (int) (Math.random() * 100);
}

显示数组索引越界异常 exception

另一方面,如果我像这样修改数组复制代码:

for(int i=0,k=0;i<a.length;++i){
System.arraycopy(a[i], 0, arr, k, a[i].length);
k+=a[i].length;
}

效果很好,我想知道这两个代码有什么区别,以及如何编写每次更新 2 个元素的 for 循环。如有任何建议,我们将不胜感激,谢谢。

最佳答案

修改你的循环。您首先递增“i”,然后递增 k,因此当 i==4 时,它再次递增 i,这将是 5,然后您将访问 a[5],这将抛出 ArrayIndexOutOfBoundsException。

        for (int i = 0, k = 0; i < a.length; k += a[i].length,++i) {
System.arraycopy(a[i], 0, arr, k, a[i].length);
}

关于java - 每次有 2 个元素的 for 循环中数组索引超出范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39943902/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com