摘要: 1、if 判断 lua中 nil 和 false 为 假,其余为真 2、table是否为空 local a = {} 正确是 if next(a) == nil then xx end 而不是 if a == {} then xx end 3、table长度 t = {1, 2, 3} t[1] = 阅读全文
posted @ 2017-03-31 21:34 gaoyanglao 阅读(197) 评论(0) 推荐(0) 编辑