摘要: 阅读全文
posted @ 2020-03-17 15:48 富坚老贼 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-17 15:30 富坚老贼 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-17 15:14 富坚老贼 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-17 15:01 富坚老贼 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 简单模式 r 以只读方式打开文件,该文件必须存在。 w 打开只写文件,若文件存在则文件长度清为0,即该文件内容会消失。若文件不存在则建立该文件。 a 以附加的方式打开只写文件。若文件不存在,则会建立该文件,如果文件存在,写入的数据会被加到文件尾,即文件原先的内容会被保留。(EOF符保留) r+ 以可 阅读全文
posted @ 2020-03-17 14:54 富坚老贼 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1.创建并运行 (1)方法1 local r=coroutine.create( --创建 function (a,b) print(a+b) print('end') end ) coroutine.resume(r,3,5) --执行 (2)方法2 local r=coroutine.wrap( 阅读全文
posted @ 2020-03-17 11:16 富坚老贼 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1.创建模块 新建一个文件 Module.lua -- 文件名为 module.lua -- 定义一个名为 module 的模块 Module = {} -- 定义一个常量 Module.constant = "abc" -- 定义一个函数 function Module.func() print( 阅读全文
posted @ 2020-03-17 10:38 富坚老贼 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-17 10:37 富坚老贼 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-17 09:36 富坚老贼 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 无状态迭代器 多状态迭代器 迭代器函数 string.gmatch(str, pattern) 阅读全文
posted @ 2020-03-17 09:35 富坚老贼 阅读(286) 评论(0) 推荐(0) 编辑