ArrayList<int[]> arl = new ArrayList<int[]>();
int a1[] = {1, 2, 3};
arl.add(0, a1);
ar1[0][2]=5
如果我们想将值 3 重置为其他值,如何像在 2d 数组中那样在特定位置设置元素值,就像在这段代码中一样。
ArrayList<int[]> arl = new ArrayList<int[]>();
int a1[] = {1, 2, 3};
arl.add(0, a1);
ar1[0][2]=5
如果我们想将值 3 重置为其他值,如何像在 2d 数组中那样在特定位置设置元素值,就像在这段代码中一样。