如何在 Lua 中擦除或重置表
我将如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您迭代这些键并使它们为零。
如果它是一个数组,则使用 table.remove() 删除值
You iterate over the keys and make them nil.
If it's an array then remove values with table.remove()
这条路怎么样?
What about this way?
这将创建一个带有新指针的新表“t”并删除旧值:
这将删除表中的所有值,最终将没有表:
this will create a new table 't' with a new pointer and delete old values:
this one will delete all values of the table and you will end up with no table: