LUA逻辑运算符OR的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LUA逻辑运算符OR的使用相关的知识,希望对你有一定的参考价值。
function CheckValue(str_value, int_value) local msg; --逻辑运算符的使用 if (int_value < 0) or (str_value == ‘ ‘) then msg = 0; else msg = 1; end return msg; end in_str = io.read(); in_int = 1; status = CheckValue(in_str, in_int); if status == 1 then print("all input"); else print("has error"); end
以上是关于LUA逻辑运算符OR的使用的主要内容,如果未能解决你的问题,请参考以下文章