type
是lua内置的函数,用来获取类型
typeof
是一个自定义的函数,为了用来获取cs的类型
代码和输入如下:
local a = 1
print(type(a)) -- number
print(typeof(a)) -- 报错
print(typeof(CS.UnityEngine.Vector3)) -- UnityEngine.Vector3: -2016843720
print(type(CS.UnityEngine.Vector3)) -- table
type
是lua内置的函数,用来获取类型
typeof
是一个自定义的函数,为了用来获取cs的类型
代码和输入如下:
local a = 1
print(type(a)) -- number
print(typeof(a)) -- 报错
print(typeof(CS.UnityEngine.Vector3)) -- UnityEngine.Vector3: -2016843720
print(type(CS.UnityEngine.Vector3)) -- table