摘要: 错误处理: local function add(a,b) assert(type(a) == "number", "a 不是一个数字") assert(type(b) == "number", "b 不是一个数字") return a+b end add(10) #如果正确执行,不做任何操作,否则 阅读全文
posted @ 2017-11-21 15:16 天行健风行云 阅读(157) 评论(0) 推荐(0) 编辑