我刚刚开始使用Lua,我想知道(因为我在网站上找不到它)如果Lua有一个OR运算符,就像其他语言中的那样||:
if (condition == true || othercondition == false) {
somecode.somefunction();
}
而在Lua中,有
if condition then
x = 0
end
如何在Lua中编写IF块以使用OR?
答案 0 :(得分:26)
用“或”。
if condition or not othercondition then
x = 0
end
正如Lua手册中明确指出的那样。