nil 代表什么也没有,可以与C的NULL作类比,但它不是空指针。你访问一个没有声明过的变量,就是nil。例如 foo = anUnknownVariable 现在 foo = nil。 只有false和nil是false,其他的都是true,上面提到过包括0和空字符串在内都是true。
> print(type(nil))
nil
> print(type(99.9+12))
number
> print(type(true))
boolean
> print(type("Hello World"))
string
> print(type(print))
function
> print(type{test = "test"})
table
要注意的是:lua中的变量如果没有特殊说明,全是全局变量,那怕是语句块或是函数里。变量前加local关键字的是局部变量。
theGlobalVar = 50
local theLocalVar = "local variable"
推荐阅读: