23

我刚开始使用 Lua,我想知道(因为我在网站上找不到)Lua 是否有 OR 运算符,就像其他语言中的 || 一样:

if (condition == true || othercondition == false) {
 somecode.somefunction();
}

而在 Lua 中,有

if condition then
    x = 0
end

我将如何在 Lua 中编写一个 IF 块来使用 OR?

4

1 回答 1

35

用“或”。

if condition or not othercondition then
    x = 0
end

正如 Lua 手册明确指出的那样。

于 2012-06-30T05:01:14.967 回答