lua判断table是否为空
2021-07-27
~ 1 min
空对象
if #table == 0 then end
非空对象
if #table ~= 0 then end