lua 中只有 false 和 nil 表示假,其他都是表示真。
数字0和空字符串也表示真。
代码:
local cymometerSwitch = 0
if cymometerSwitch then
print(111111)
else
print(222222)
end
打印111111
lua 中只有 false 和 nil 表示假,其他都是表示真。
数字0和空字符串也表示真。
代码:
local cymometerSwitch = 0
if cymometerSwitch then
print(111111)
else
print(222222)
end
打印111111