boolean 類型只有兩個可選值:true(真) 和false(假),Lua 把false 和nil 看作是"假",其他的都为"真": print(type(true)) print(type(false)) print(type(nil)) if ...
確定! 回上一頁