假设我有一个int[][] anArray = new int[4][4];
假设我想制作 anArray {1, 2, 3, 4} 的第 3 行。我可以在不手动为每个单独的值分配其值的情况下做到这一点吗?如果它是 anArray 的第 2 列怎么办?
我发布这个是因为做这样的事情相当不方便:
int[][] foo = new int[bar][baz];
//
//Code that uses other columns of foo
//
for (int n=0; n < bar; n++)
foo[n][1] = bin[n];