对于 string,ECMA 的定义是: The type String is the set of all finite ordered sequences of zero or more Unicode characters。 string 类型是一串有限有序,长度可以为 0 的 Unicode 字符
在设计之初,string 就是被视作一个有序的字符序列来进行设计的,所以它的本质是 It is a set of "elements" of 16-bit unsigned integer values. Each element in the String occupies a position in the String. 它是一系列由 16 位无符号整型数组成的元素。每一个元素在这个 String 里占一个位置
而 number 就是一个普通的双精度浮点数( double-precision 64-bit binary format IEEE 754 value )
yxcoder
2019-01-08 15:03:05 +08:00
就像 C 里面 字符串就是字符数组一样
第 1 页 / 共 1 页
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。