我有两个整数表示二维字符数组中的特定位置,我正在尝试编写一个方法来获取这些整数,将它们用作数组中的索引位置,并将它们替换为新字符“。” (然后该方法会将数组返回给 main 方法)。
这是(当前为空)方法:
public static char[][] playerMoveDown(int playerPosR, int playerPosC, char[][] mazeGrid) {
}
我正在尝试为此做一些事情:
mazeGrid[][].setCharAt(mazeGrid[playerPosR][playerPosC], '.');
但是有一些适用于字符数组的东西(因为 setCharAt 只适用于字符串)。什么是简单易行的方法?