如何使用包含col,row和堆栈(包含4,3,2,1)的3d通用数组制作电路板。
这是我宣布的:
private int row, col, stack;
int[][][] array3Dboard = new int[row][col][stack];
我在如何使用多维制作电路板时遇到了麻烦。
public void initalized(int arg1){
this.playerID = arg1;
this.array3Dboard = new int[4][4][4];
//create a data structure for the current contents of the board and stacks.
}
感谢。
答案 0 :(得分:1)
您需要确保使用方法initialized()的类将int [] [] [] array3Dboard声明为实例变量。
你还需要写:
int row = 4;
int col = 4;
int stack = 4;
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
for (int k = 0; k < stack; k++) {
array3Dboard[i][j][k] = 0; //replace 0 with some numerical value
}
}
}