lua and or not 邏輯運算子

2021-07-13 20:40:19 字數 752 閱讀 3644

and or not

邏輯運算子認為false 和nil 是假(false),其他為真,0 也是true.

and 和or 的運算結果不是true 和false,而是和它的兩個運算元相關。

注:下面的和其他語法有區別

a and b -- 如果a 為false,則返回a,否則返回b

a or b -- 如果a 為true,則返回a,否則返回b

例如:print(4 and 5) --> 5

print(nil and 13) --> nil

print(false and 13) --> false

print(4 or 5) --> 4

print(false or 5) --> 5

乙個很實用的技巧:如果x 為false 或者nil 則給x 賦初始值v

x = x or v

等價於if not x then

x = v

endand 的優先順序比or 高。

c 語言中的三元運算子

a ? b : c

在lua 中可以這樣實現:

(a and b) or c

not 的結果只返回false 或者true

print(not nil) --> true

print(not false) --> true

print(not 0) --> false

print(not not nil) --> false

lua and or not 邏輯運算子

and or not 邏輯運算子認為false 和nil 是假 false 其他為真,0 也是true.and 和or 的運算結果不是true 和false,而是和它的兩個運算元相關。注 下面的和其他語法有區別 a and b 如果a 為false,則返回a,否則返回b a or b 如果a 為tr...

mysql 動態邏輯運算 MySQL 邏輯運算子

not 10 10 not 1 1 1 1 not 1 1 not null 0 0 1 1 0 null 2 邏輯與 and 或 1 當所有運算元均為非零值 並且不為 null 時,所得值為 1 2 當乙個或多個運算元為 0 時,所得值為 0 3 其餘情況所得值為 null mysql selec...

邏輯運算 位運算

今天有人問我,邏輯運算是什麼,現在來解釋一下 邏輯運算就是相當於資訊競賽基礎工具中的一位的位運算 符號對應關係 wedge cap 交 and 與運算 vee cup 並 or 或運算 neg not 非 xor 異或運算 x k 將x的二進位制右移k位 如 x 10110 2 時,k 1,那麼x ...