Lua 之 奇葩的默认参数 设置

来源:互联网 发布:淘宝被扣分后降权多久 编辑:程序博客网 时间:2024/05/08 05:16

function test(a)

a = a or 1
print(a)

end


test()

test(2)

console:

2


 

function test(a)
a = a or true
print(a)
end

test()

test(false)

两个居然 都 是true

判断 bool 类型时用这个方法。

function test()
a = a == nil and true or false

或者 

a= a ~= false

print(a)
end


原创粉丝点击