摘要: 一 、table扩展 -- 返回table大小 table.size = function(t) local count = 0 for _ in pairs(t) do count = count + 1 end return count end -- 判断table是否为空 table.empt 阅读全文
posted @ 2020-10-27 15:43 无名之士 阅读(210) 评论(0) 推荐(0) 编辑