gpt4 book ai didi

javascript - [undefined × 2] 是什么意思,为什么它与 [undefined,undefined] 不同?

转载 作者:行者123 更新时间:2023-11-29 21:05:19 26 4
gpt4 key购买 nike

在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的是,考虑到我在 Microsoft 期间在 Chakra 引擎中从事数组方面的工作)。

如果我将其输入 Chrome 的 JavaScript 控制台...

var x = Array(2);
var y = [undefined, undefined];
var z = [,];

...然后在查询 xyz 变量时,我分别得到以下输出:

> x
< [undefined × 2]
< length: 2

> y
< [undefined, undefined] (
< 0: undefined
< 1: undefined
< length: 2

> z
< [undefined × 1]
< length: 1

MDN's relevant documentation对于 Array(arrayLength)[] 文字语法状态:

If the only argument passed to the Array constructor is an integer this returns a new JavaScript array with its length property set to that number (Note: this implies an array of arrayLength empty slots, not slots with actual undefined values). If the argument is any other number, a RangeError exception is thrown.

我注意到文档没有进一步解释“插槽”的概念 - 我假设他们将其用作“数组元素”的同义词(我知道 JavaScript 数组可以是稀疏数组具有不同的内部表示,但这不应该影响消费者如何看待它们 - 考虑到 JavaScript 数组和对象无论如何都是对各种数据结构的抽象)。

MSDN 上的相同文档没有提及 Array 函数或 Array-literal [] 语法的边缘情况参数。

所以我的问题是:

  • undefined × 2 是什么意思?
  • 为什么 Array(2) 的计算结果为 [undefined × 2] 而不是 [undefined, undefined]
  • 为什么 [,] 有一个 length: 1

为了尝试回答我自己的问题,我咨询了 the ECMA-262 7.0 specification on Array Literals .关于省略数组文字元素(强调我的)有一个有趣的注释:

Array elements may be elided at the beginning, middle or end of the element list. Whenever a comma in the element list is not preceded by an AssignmentExpression (i.e., a comma at the beginning or after another comma), the missing array element contributes to the length of the Array and increases the index of subsequent elements. Elided array elements are not defined. If an element is elided at the end of an array, that element does not contribute to the length of the Array.

因此,粗体部分至少回答了我的第三个问题:如果最后一个元素“缺失”,则它不存在,如果非终结元素没有值,则它是 undefined。所以这些表达式是等价的:

[a,]   --> [a]
[a,b,] --> [a,b]
[a,,b] --> [a,undefined,b]

因此

[,]    --> [undefined]
[,,] --> [undefined,undefined]

所以我在 Chrome 中尝试了这个:

> var a = [,,];
> a
> [undefined × 2]
> length: 2

这是出乎意料的!根据元素省略的明确规则,我认为 [,,] 等同于 [undefined,undefined],但 Chrome 认为 [,,] 等效于 Array(2)(请注意,没有定义索引器,其结果与 case y 相同)。

那么我的第四个问题:

  • 为什么 [,,] 等同于 Array(2) 而不是 [undefined,undefined]

最佳答案

What does undefined × 2 mean?

控制台显示某些开发人员根据某些输入确定的有用消息。它不应被视为任何意义上的规范,并且在某些情况下具有误导性。声明:

var x = Array(2);

创建一个变量 x 并分配一个长度为 2 的新数组。没有任何有意义的“空槽”。它相当于:

var x = [,,];

(注意旧的 IE 有一个错误,上面创建了一个长度为 3 而不是 2 的数组)。您可以将其视为如下对象:

var x = {length: 2};

可以添加的属性数量不受设置长度的限制。但是,设置现有数组的长度将删除索引等于或大于新长度的所有成员。

话虽如此,实现可以自由地为“长度”的索引分配空间,这在某些情况下似乎可以提高性能,但并未指定为 ECMA-262 所要求的。

Why does Array(2) evaluate to [undefined × 2] instead of [undefined, undefined]?

见上文,控制台只是想提供帮助。根本没有未定义的成员,只有一个长度为 2 的数组。为了记录,IE 10 显示:

[undefined, undefined]

由于上述原因,这也具有误导性。它应该显示 [,,]

Why does [,] have a length: 1?

这称为省略,它是 array initializer 的一部分或数组文字。它以与以下相同的方式创建“缺失”成员:

var x = [];
x[0] = 0;
x[2] = 2;

在索引 1 处没有成员,等同于:

var x = [0,,2];

再次注意旧 IE 将 [,] 解释为长度为 2。索引 1 处的成员被称为“省略”。

关于javascript - [undefined × 2] 是什么意思,为什么它与 [undefined,undefined] 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44404105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com