Lua1.1 Lua 的参考手册 (三)
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> (接上篇) -------------------------------------- 7 一些例子 -------------------------------------- 本段给出一些显示 Lua 特性的例子。它并不打算覆盖完整的语言,只是显示一有趣的使用。 ------------------- 7.1 函数 next 和 nextvar ------------------- 这个例子显示如何使用函数 next 去遍历一个表的字段: function f (t) -- t is a table local i, v = next(t, nil) -- i is an index of t, v = t[i] while i do -- do something with i and v i, v = next(t, i) -- get next index end end 这个例子打印所有值非空的全局变量的名字 function printGlobalVariables () local i, v = nextvar(nil) while i do print(i) i, v = nextvar(i) end end ------------------- 7.2 字符串操作 ----------