我如何连接我的String和行中的int:print('Computer is moving to ' + (i + 1));
和print("Computer is moving to " + (i + 1));
我无法弄清楚,因为错误一直在说“参数类型'int'不能分配给参数类型'String'”
void getComputerMove() {
int move;
// First see if there's a move O can make to win
for (int i = 0; i < boardSize; i++) {
if (_mBoard[i] != humanPlayer && _mBoard[i] != computerPlayer) {
String curr = _mBoard[i];
_mBoard[i] = computerPlayer;
if (checkWinner() == 3) {
print('Computer is moving to ' + (i + 1));
return;
} else
_mBoard[i] = curr;
}
}
// See if there's a move O can make to block X from winning
for (int i = 0; i < boardSize; i++) {
if (_mBoard[i] != humanPlayer && _mBoard[i] != computerPlayer) {
String curr = _mBoard[i]; // Save the current number
_mBoard[i] = humanPlayer;
if (checkWinner() == 2) {
_mBoard[i] = computerPlayer;
print("Computer is moving to " + (i + 1));
return;
} else
_mBoard[i] = curr;
}
}
}
3条答案
按热度按时间0md85ypi1#
使用字符串插值:
或者直接调用toString():
xwbd5t1u2#
你可以简单地使用
.toString
将整数转换为String:你的情况是这样的:
bzzcjhmw3#