# Number Number 对象是经过封装的能让你处理数字值的对象。 ## 构造函数 ### new(value ?: any) : Number;@Constructor(value?) 注意:通过构造器函数创建`Number`对象的语法,目前仅支持web平台。 在app 平台,需要使用字面量定义或者`Number.from()`进行数字变量的创建 [文档](https://doc.dcloud.net.cn/uni-app-x/uts/data-type.html#%E6%95%B0%E5%AD%97-number) ## 实例属性 ### MAX_VALUE ### MIN_VALUE ### NaN ### NEGATIVE_INFINITY ### POSITIVE_INFINITY ## 实例方法 ### toFixed(fractionDigits?) ### toString(radix?) ### toExponential(fractionDigits?) ### toPrecision(precision?) ### valueOf() ### toInt() ### toFloat() ### toDouble() ### toUInt() ### toByte() ### toLong() ### toShort() ### toUShort() ### toULong() ### toInt64() ### toInt32() ### toInt16() ### toInt8() ### toUInt64() ### toUInt32() ### toUInt16() ### toUInt8() ## 静态方法 ### from() ## Android 平台方法 Number 类型编译到 `kotlin` 为 `kotlin.Number`