尝试索引字段? (零值)

发布于 2025-01-08 01:13:16 字数 273 浏览 3 评论 0原文

我不确定问题出在哪里。有人知道为什么吗?

function check(board, color, row, col)
--if same color, change tile to "o"

if board[row][col] == color then -- attempt to index nil?
    board[row][col] = "o"
    count = count + 1
    return "o"
end

return

结尾

I am not sure where the problem is. Anyone know why?

function check(board, color, row, col)
--if same color, change tile to "o"

if board[row][col] == color then -- attempt to index nil?
    board[row][col] = "o"
    count = count + 1
    return "o"
end

return

end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始于初秋 2025-01-15 01:13:16

问题是 board[row] 没有定义;它是nil。所以你正在尝试做nil[col]

您可以通过执行以下操作来避免此错误:

if board[row] and board[row][col] == color then

相反。

但是,我建议您检查板的创建方式 - 例如,确保您没有错误地在代码中的某处切换行和列。

The problem is that board[row] is not defined; it's nil. So you are trying to do nil[col].

You can avoid this error by doing this:

if board[row] and board[row][col] == color then

Instead.

However, I'd recommend you to review the way board is created - for example, make sure that you have not switched rows and cols somewhere in your code by mistake.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文