我想清除一张桌子,但不确定哪种方法是最好的,并且彼此之间有什么不同。这些之间有什么区别:
tbl = {}
for k, v in pairs(tbl) do v = nil end
for k, v in pairs(tbl) do tbl[k] = nil end
谢谢。