我正在尝试在多维数组中显式声明值。我不断收到大量错误消息
这是有问题的代码:
int[][] test = new int [6][3];
test[0] = {1,2,3};
test[1] = {1,3,2};
test[2] = {2,3,1};
test[3] = {2,1,3};
test[4] = {3,2,1};
test[5] = {3,1,2};
这在二维数组中是不允许的吗?
我已经阅读了有关数组的 java 文档