gpt4 book ai didi

Java - 尝试在屏幕上生成单元格,收到 ArrayIndexOutOfBoundsException

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

所以我试图创建一个单元格网格,每个单元格都可以作为自己的 onTouch 对象。我遇到了很多问题,但主要的问题是尝试填充单元格的列和行时发生的异常。现在我正在尝试实现 Try/Catch 方法来解决它,但还没有运气。我想也许如果我从 (j) 中减去列数,它可能会阻止最后两列填充(实际上我知道这是行不通的)。

无论如何,这是代码:

// creates cells
NavCell[][] mCells = new NavCell[mCellCols][mCellRows];
//System.out.println( "Rows " + mCellRows + " and Cols: " + mCellCols);
for (int j = 0; j < 18; j++)
{
System.out.println("inside rows " + j);
if (mCells[j] != null)
{
for (int i = 0; i < mCellCols; i++)
{
System.out.println("inside columns " + i);

mCells[j][i] = new NavCell();
mCells[j][i].setBounds(
i * CELL_SIZE,
j * CELL_SIZE,
(i * CELL_SIZE) + CELL_SIZE,
(i * CELL_SIZE) + CELL_SIZE);
// drawCells(i, j);
// System.out.println( "Lazer-3 " + CELL_SIZE);
// System.out.println( "Lazer-4 " + i);

System.out.println("Hello Dude" + j );
Canvas canvas = new Canvas();
drawCells(canvas, j, i);
}
try {
int Z = j - 2;
j = Z;
System.out.println("Hello Matt" + j );
} catch (ArrayIndexOutOfBoundsException e) {
Log.e("MainActivity", "Reading list of NavCells failed!", e);
}
}

System.out.println("Lazer-2 " + mCells);
}

最佳答案

有问题,您声明了 NavCell[][] mCells = new NavCell[mCellCols][mCellRows]; 但事实并非如此。

您需要声明它NavCell[][] mCells = new NavCell[mCellRows][mCellCols];首先是,然后是

所以 for 会像:

-- here you just go for all the rows --

for (int i = 0; i < mCellRows; i++){



--here you go for all the columns in each row --

for(int a = 0; a < mCelCols; a++){

}
}

关于Java - 尝试在屏幕上生成单元格,收到 ArrayIndexOutOfBoundsException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57596261/

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