gpt4 book ai didi

java - Char 数组索引不接受

转载 作者:太空宇宙 更新时间:2023-11-04 07:01:11 27 4
gpt4 key购买 nike

我在玩井字棋模拟游戏时遇到问题。我使用二维数组来表示游戏板,并按如下方式实例化它。我需要使用 char 类型数组。我意识到我不必指定每个索引为 null,因为这是 char 的默认值,但我想我应该尝试一下。

public TicTacToe2D()
{
board = new char[3][3];

for(int i = 0; i < board.length; i++)
{
for(int j = 0; j < board[i].length; j++)
{
board[j] = null;
}

board[i] = null;
}
}

这里我正在检查获胜条件,看看索引是否彼此相等并且不为空(默认值),尽管我尝试使用“”作为数组初始值。在这种情况下,我收到错误:“不兼容的类型:char 无法转换为 char[]”

public char isWin()
{
//Check for row wins
if (board[0][0] == board[0][1] && board[0][1] == board[0][2] && board[0][0] != null)
return true;

if (board[1][0]==board[1][1] && board[1][1]==board[1][2] && board[1][0] != null)
return true;

if (board[2][0]==board[2][1] && board[2][1]==board[2][2] && board[2][0] != null)
return true;

//Check for column wins
if (board[0][0]==board[1][0] && board[1][0]==board[2][0] && board[0][0] != null)
return true;

if (board[0][1]==board[1][1] && board[1][1]==board[2][1] && board[0][1] != null)
return true;

if (board[0][2]==board[1][2] && board[1][2]==board[2][2] && board[0][2] != null)
return true;

//Check for diagonal wins
if (board[0][0]==board[1][1] && board[1][1]==board[2][2] && board[0][0] != null)
return true;

if (board[2][0] == board[1][1] && board[1][1] == board[0][2] && board[2][0] != 0)
return true;
else return false;
}

检查索引是否为空时,出现错误“不可比较的类型:char 和”任何帮助将不胜感激!

最佳答案

数据类型char是原始数据类型,因此它不能为null。但默认值是空字符\0(或\u0000)。 JLS Section 4.12.5给出默认值:

  • For type char, the default value is the null character, that is, '\u0000'.

尝试将其与 \0\u0000 进行比较,而不是与 null 进行比较。

关于java - Char 数组索引不接受,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22082339/

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