如何在 Lua 中擦除或重置表

发布于 2024-10-16 21:05:31 字数 43 浏览 1 评论 0原文

我将如何在 Lua 中完全擦除或重置表格。我想最后把它变成一张空白表格。

How would I go about completely wiping or resetting a table in Lua. I want to make it into a blank table in the end.

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

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

发布评论

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

评论(3

装迷糊 2024-10-23 21:05:31

您迭代这些键并使它们为零。

for k,v in pairs(t) do
  t[k] = nil
end

如果它是一个数组,则使用 table.remove() 删除值

You iterate over the keys and make them nil.

for k,v in pairs(t) do
  t[k] = nil
end

If it's an array then remove values with table.remove()

紙鸢 2024-10-23 21:05:31

这条路怎么样?

t = {..some non-empty table..}
...some code...
t={}

What about this way?

t = {..some non-empty table..}
...some code...
t={}
此生挚爱伱 2024-10-23 21:05:31

这将创建一个带有新指针的新表“t”并删除旧值:

t = {1, 2, 3}
t = {}
collectgarbage()

这将删除表中的所有值,最终将没有表:

t = {1, 2, 3}
t = nil
collectgarbage()

this will create a new table 't' with a new pointer and delete old values:

t = {1, 2, 3}
t = {}
collectgarbage()

this one will delete all values of the table and you will end up with no table:

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