gpt4 book ai didi

java - 我如何使用 3d 通用阵列制作一 block 板

转载 作者:行者123 更新时间:2023-12-01 13:18:01 28 4
gpt4 key购买 nike

如何使用包含列、行和堆栈(包含 4、3、2、1)的 3D 通用数组制作一 block 板。

这是我声明的:

private int row, col, stack;
int[][][] array3Dboard = new int[row][col][stack];

我只是在如何使用多维制作一 block 板时遇到了麻烦。

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.

}

谢谢。

最佳答案

您需要确保具有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
}
}
}

关于java - 我如何使用 3d 通用阵列制作一 block 板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22312178/

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