官方手册里早已经给了答案,那就是靠lua内置的next函数
即如此用:
a = {}
if next(a) == nil then
next其实就是pairs遍历table时用来取下一个内容的函数.
但是如果 a= nil 就会报错,所以还要先判断一下 a是否为nil。
于是封装后判断的lua table是否为空的函数如下:
function tableIsEmpty(t) if t == nil then return true end return _G.next(t) == nil end
|
请发表评论