在Lua 5.3中, bit32 庫已廢棄,因為現在有了本機按位運算符。 print(3 & 5) -- bitwise and print(3 | 5) -- bitwise or print(3 ~ 5) -- bitwise xor print(7 >> 1) ...
確定! 回上一頁