dart:core
库中num.toString
方法的用法介绍如下。
用法:
String toString()
override
正确表示此数字的最短字符串。
10^-6
(包括)到 10^21
(不包括)范围内的所有 double 都将转换为小数点后至少一位的十进制表示。对于所有其他双精度数,除了 NaN
或 Infinity
等特殊值外,此方法返回 index 表示(请参阅 toStringAsExponential )。
返回 "NaN"
为 double.nan , "Infinity"
为 double.infinity 和 "-Infinity"
为 double.negativeInfinity 。
int 被转换为没有小数点的十进制表示。
例子:
(0.000001).toString(); // "0.000001"
(0.0000001).toString(); // "1e-7"
(111111111111111111111.0).toString(); // "111111111111111110000.0"
(100000000000000000000.0).toString(); // "100000000000000000000.0"
(1000000000000000000000.0).toString(); // "1e+21"
(1111111111111111111111.0).toString(); // "1.1111111111111111e+21"
1.toString(); // "1"
111111111111111111111.toString(); // "111111111111111110000"
100000000000000000000.toString(); // "100000000000000000000"
1000000000000000000000.toString(); // "1000000000000000000000"
1111111111111111111111.toString(); // "1111111111111111111111"
1.234e5.toString(); // 123400
1234.5e6.toString(); // 1234500000
12.345e67.toString(); // 1.2345e+68
注意:如果返回的字符串足够准确以唯一标识input-number,则转换可能会舍入输出。例如,double 9e59
的最精确表示等于 "899999999999999918767229449717619953810131273674690656206848"
,但此方法返回较短的(但仍是唯一标识)"9e59"
。
相关用法
- Dart num.toStringAsExponential用法及代码示例
- Dart num.toStringAsPrecision用法及代码示例
- Dart num.toStringAsFixed用法及代码示例
- Dart num.tryParse用法及代码示例
- Dart num.sign用法及代码示例
- Dart num.abs用法及代码示例
- Dart num.remainder用法及代码示例
- Dart num.compareTo用法及代码示例
- Dart num.operator_modulo用法及代码示例
- Dart num.parse用法及代码示例
- Dart num.clamp用法及代码示例
- Dart MapMixin.containsKey用法及代码示例
- Dart Iterator用法及代码示例
- Dart AttributeClassSet.intersection用法及代码示例
- Dart TransformList.last用法及代码示例
- Dart FileList.first用法及代码示例
- Dart CanvasRenderingContext2D.drawImageScaledFromSource用法及代码示例
- Dart FileList.length用法及代码示例
- Dart Iterable.takeWhile用法及代码示例
- Dart LinkedHashMap用法及代码示例
- Dart RegExp.pattern用法及代码示例
- Dart StreamTransformer构造函数用法及代码示例
- Dart JsArray.removeAt用法及代码示例
- Dart ListMixin.expand用法及代码示例
- Dart UriData.parse用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 toString method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。