lua判断table是否为空

空对象

if #table == 0 then

end

非空对象

if #table ~= 0 then
end