函数名称 |
类型.判断类型 |
|
|
|
函数功能 |
判断数据是什么类型 |
|
|
|
函数语法 |
类型.判断类型(ginseng) |
|
|
|
英文语法 |
LX.PDNX(ginseng) |
|
|
|
函数权限 |
root 激活模式 无障碍模式 |
|
|
|
参数说明 |
参数 |
类型 |
必填 |
说明 |
|
ginseng |
任何数据 |
是 |
传入任何数据进行判断 |
返回值 |
类型 |
string |
|
函数用例:
print(类型.判断类型("Hello world")) --> string
print(类型.判断类型(10.4*3)) --> number
print(类型.判断类型(print)) --> function
print(类型.判断类型(type)) --> function
print(类型.判断类型(true)) --> boolean
print(类型.判断类型(nil)) --> nil
print(类型.判断类型(type(X))) --> string
print(LX.PDNX("Hello world")) --> string
print(LX.PDNX(10.4*3)) --> number
print(LX.PDNX(print)) --> function
print(LX.PDNX(type)) --> function
print(LX.PDNX(true)) --> boolean
print(LX.PDNX(nil)) --> nil
print(LX.PDNX(type(X))) --> string