方法介绍
方法名称:转化整数
语法:math.tointeger(n)
功能说明:如果 x 可以转换为一个整数, 返回该整数。 否则返回 nil。
参数说明:字符串类型或者数字类型
返回值:转化的整数
方法例子
local r = math.tointeger("666")
print(r)