type
型:function
code:Lua
type(v)
説明
vの型を文字列で返す 返される文字列は以下の通り
table:
戻り値 説明 例
"nil" nil nil
"number" 数値 123 -456 3.14 math.huge
"string" 文字列 "abc" ""
"boolean" ブーリアン true false
"table" テーブル {1,2,3} {}
"function" 関数 type
"thread" スレッド
"userdata" ユーザーデータ (obj.getpixeldata())
vに何も渡されなければエラーを吐く (bad argument #1 to 'type' (value expected))
関連項目