number.md 7.1 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5
# Number


Number 对象是经过封装的能让你处理数字值的对象。

杜庆泉's avatar
杜庆泉 已提交
6
## 构造函数
D
DCloud_LXH 已提交
7

D
DCloud_LXH 已提交
8
### new(value ?: any) : Number;@Constructor(value?)
9 10 11 12 13 14 15 16 17 18 19 20

<!-- UTSJSON.Number.Constructor.description -->

<!-- UTSJSON.Number.Constructor.param -->

<!-- UTSJSON.Number.Constructor.returnValue -->

<!-- UTSJSON.Number.Constructor.compatibility -->

<!-- UTSJSON.Number.Constructor.tutorial -->


杜庆泉's avatar
杜庆泉 已提交
21
注意:通过构造器函数创建`Number`对象的语法,目前仅支持web平台。 在app 平台,需要使用字面量定义或者`Number.from()`进行数字变量的创建 [文档](https://doc.dcloud.net.cn/uni-app-x/uts/data-type.html#%E6%95%B0%E5%AD%97-number)
杜庆泉's avatar
杜庆泉 已提交
22 23 24



D
DCloud_LXH 已提交
25 26 27 28 29 30 31 32 33 34 35
## 实例方法


### toFixed(fractionDigits?)

<!-- UTSJSON.Number.toFixed.description -->

<!-- UTSJSON.Number.toFixed.param -->

<!-- UTSJSON.Number.toFixed.returnValue -->

M
mahaifeng 已提交
36
<!-- UTSJSON.Number.toFixed.test -->
D
DCloud_LXH 已提交
37 38 39

<!-- UTSJSON.Number.toFixed.compatibility -->

D
DCloud_LXH 已提交
40
### toString(radix?)
D
DCloud_LXH 已提交
41 42 43 44 45 46 47

<!-- UTSJSON.Number.toString.description -->

<!-- UTSJSON.Number.toString.param -->

<!-- UTSJSON.Number.toString.returnValue -->

D
DCloud_LXH 已提交
48 49
<!-- UTSJSON.Number.toString.test -->

D
DCloud_LXH 已提交
50 51
<!-- UTSJSON.Number.toString.compatibility -->

D
DCloud_LXH 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
<!-- UTSJSON.Number.toString.tutorial -->

### toExponential(fractionDigits?)

<!-- UTSJSON.Number.toExponential.description -->

<!-- UTSJSON.Number.toExponential.param -->

<!-- UTSJSON.Number.toExponential.returnValue -->

<!-- UTSJSON.Number.toExponential.test -->

<!-- UTSJSON.Number.toExponential.compatibility -->

<!-- UTSJSON.Number.toExponential.tutorial -->

### toPrecision(precision?)

<!-- UTSJSON.Number.toPrecision.description -->

<!-- UTSJSON.Number.toPrecision.param -->

<!-- UTSJSON.Number.toPrecision.returnValue -->

<!-- UTSJSON.Number.toPrecision.test -->

<!-- UTSJSON.Number.toPrecision.compatibility -->

<!-- UTSJSON.Number.toPrecision.tutorial -->
杜庆泉's avatar
杜庆泉 已提交
81

D
DCloud_LXH 已提交
82 83 84 85 86 87 88 89
### valueOf()

<!-- UTSJSON.Number.valueOf.description -->

<!-- UTSJSON.Number.valueOf.param -->

<!-- UTSJSON.Number.valueOf.returnValue -->

M
mahaifeng 已提交
90 91
<!-- UTSJSON.Number.valueOf.test -->

D
DCloud_LXH 已提交
92 93
<!-- UTSJSON.Number.valueOf.compatibility -->

D
DCloud_LXH 已提交
94 95 96 97 98 99 100 101
### toInt()

<!-- UTSJSON.Number.toInt.description -->

<!-- UTSJSON.Number.toInt.param -->

<!-- UTSJSON.Number.toInt.returnValue -->

M
mahaifeng 已提交
102
<!-- UTSJSON.Number.toInt.test -->
D
DCloud_LXH 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

<!-- UTSJSON.Number.toInt.compatibility -->

### toFloat()

<!-- UTSJSON.Number.toFloat.description -->

<!-- UTSJSON.Number.toFloat.param -->

<!-- UTSJSON.Number.toFloat.returnValue -->

<!-- UTSJSON.Number.toFloat.compatibility -->

### toDouble()

<!-- UTSJSON.Number.toDouble.description -->

<!-- UTSJSON.Number.toDouble.param -->

<!-- UTSJSON.Number.toDouble.returnValue -->

<!-- UTSJSON.Number.toDouble.compatibility -->

### toUInt()

<!-- UTSJSON.Number.toUInt.description -->

<!-- UTSJSON.Number.toUInt.param -->

<!-- UTSJSON.Number.toUInt.returnValue -->

<!-- UTSJSON.Number.toUInt.compatibility -->

### toByte()

<!-- UTSJSON.Number.toByte.description -->

<!-- UTSJSON.Number.toByte.param -->

<!-- UTSJSON.Number.toByte.returnValue -->

M
mahaifeng 已提交
144
<!-- UTSJSON.Number.toByte.test -->
D
DCloud_LXH 已提交
145 146 147 148 149 150 151 152 153 154 155

<!-- UTSJSON.Number.toByte.compatibility -->

### toLong()

<!-- UTSJSON.Number.toLong.description -->

<!-- UTSJSON.Number.toLong.param -->

<!-- UTSJSON.Number.toLong.returnValue -->

M
mahaifeng 已提交
156
<!-- UTSJSON.Number.toLong.test -->
D
DCloud_LXH 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270

<!-- UTSJSON.Number.toLong.compatibility -->

### toShort()

<!-- UTSJSON.Number.toShort.description -->

<!-- UTSJSON.Number.toShort.param -->

<!-- UTSJSON.Number.toShort.returnValue -->

<!-- UTSJSON.Number.toShort.compatibility -->

### toUShort()

<!-- UTSJSON.Number.toUShort.description -->

<!-- UTSJSON.Number.toUShort.param -->

<!-- UTSJSON.Number.toUShort.returnValue -->

<!-- UTSJSON.Number.toUShort.compatibility -->

### toULong()

<!-- UTSJSON.Number.toULong.description -->

<!-- UTSJSON.Number.toULong.param -->

<!-- UTSJSON.Number.toULong.returnValue -->

<!-- UTSJSON.Number.toULong.compatibility -->

### toInt64()

<!-- UTSJSON.Number.toInt64.description -->

<!-- UTSJSON.Number.toInt64.param -->

<!-- UTSJSON.Number.toInt64.returnValue -->

<!-- UTSJSON.Number.toInt64.compatibility -->

### toInt32()

<!-- UTSJSON.Number.toInt32.description -->

<!-- UTSJSON.Number.toInt32.param -->

<!-- UTSJSON.Number.toInt32.returnValue -->

<!-- UTSJSON.Number.toInt32.compatibility -->

### toInt16()

<!-- UTSJSON.Number.toInt16.description -->

<!-- UTSJSON.Number.toInt16.param -->

<!-- UTSJSON.Number.toInt16.returnValue -->

<!-- UTSJSON.Number.toInt16.compatibility -->

### toInt8()

<!-- UTSJSON.Number.toInt8.description -->

<!-- UTSJSON.Number.toInt8.param -->

<!-- UTSJSON.Number.toInt8.returnValue -->

<!-- UTSJSON.Number.toInt8.compatibility -->


### toUInt64()

<!-- UTSJSON.Number.toUInt64.description -->

<!-- UTSJSON.Number.toUInt64.param -->

<!-- UTSJSON.Number.toUInt64.returnValue -->

<!-- UTSJSON.Number.toUInt64.compatibility -->

### toUInt32()

<!-- UTSJSON.Number.toUInt32.description -->

<!-- UTSJSON.Number.toUInt32.param -->

<!-- UTSJSON.Number.toUInt32.returnValue -->

<!-- UTSJSON.Number.toUInt32.compatibility -->

### toUInt16()

<!-- UTSJSON.Number.toUInt16.description -->

<!-- UTSJSON.Number.toUInt16.param -->

<!-- UTSJSON.Number.toUInt16.returnValue -->

<!-- UTSJSON.Number.toUInt16.compatibility -->

### toUInt8()

<!-- UTSJSON.Number.toUInt8.description -->

<!-- UTSJSON.Number.toUInt8.param -->

<!-- UTSJSON.Number.toUInt8.returnValue -->

<!-- UTSJSON.Number.toUInt8.compatibility -->

杜庆泉's avatar
杜庆泉 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
## 静态属性

### MAX_VALUE

<!-- UTSJSON.Number.MAX_VALUE.description -->

<!-- UTSJSON.Number.MAX_VALUE.param -->

<!-- UTSJSON.Number.MAX_VALUE.returnValue -->

<!-- UTSJSON.Number.MAX_VALUE.test -->

<!-- UTSJSON.Number.MAX_VALUE.compatibility -->

<!-- UTSJSON.Number.MAX_VALUE.tutorial -->

### MIN_VALUE

<!-- UTSJSON.Number.MIN_VALUE.description -->

<!-- UTSJSON.Number.MIN_VALUE.param -->

<!-- UTSJSON.Number.MIN_VALUE.returnValue -->

<!-- UTSJSON.Number.MIN_VALUE.test -->

<!-- UTSJSON.Number.MIN_VALUE.compatibility -->

<!-- UTSJSON.Number.MIN_VALUE.tutorial -->

### NaN

<!-- UTSJSON.Number.NaN.description -->

<!-- UTSJSON.Number.NaN.param -->

<!-- UTSJSON.Number.NaN.returnValue -->

<!-- UTSJSON.Number.NaN.test -->

<!-- UTSJSON.Number.NaN.compatibility -->

<!-- UTSJSON.Number.NaN.tutorial -->

### NEGATIVE_INFINITY

<!-- UTSJSON.Number.NEGATIVE_INFINITY.description -->

<!-- UTSJSON.Number.NEGATIVE_INFINITY.param -->

<!-- UTSJSON.Number.NEGATIVE_INFINITY.returnValue -->

<!-- UTSJSON.Number.NEGATIVE_INFINITY.test -->

<!-- UTSJSON.Number.NEGATIVE_INFINITY.compatibility -->

<!-- UTSJSON.Number.NEGATIVE_INFINITY.tutorial -->

### POSITIVE_INFINITY

<!-- UTSJSON.Number.POSITIVE_INFINITY.description -->

<!-- UTSJSON.Number.POSITIVE_INFINITY.param -->

<!-- UTSJSON.Number.POSITIVE_INFINITY.returnValue -->

<!-- UTSJSON.Number.POSITIVE_INFINITY.test -->

<!-- UTSJSON.Number.POSITIVE_INFINITY.compatibility -->

<!-- UTSJSON.Number.POSITIVE_INFINITY.tutorial -->


D
DCloud_LXH 已提交
344 345 346 347 348 349 350 351 352 353 354 355
## 静态方法

### from()

<!-- UTSJSON.Number.from.description -->

<!-- UTSJSON.Number.from.param -->

<!-- UTSJSON.Number.from.returnValue -->

<!-- UTSJSON.Number.from.compatibility -->

M
mahaifeng 已提交
356
<!-- UTSJSON.Number.from.test -->
D
DCloud_LXH 已提交
357

杜庆泉's avatar
杜庆泉 已提交
358
<!-- UTSJSON.Number.tutorial -->
杜庆泉's avatar
杜庆泉 已提交
359

杜庆泉's avatar
杜庆泉 已提交
360 361


杜庆泉's avatar
杜庆泉 已提交
362 363 364
## Android 平台方法

Number 类型编译到 `kotlin``kotlin.Number`