Array.Prototype对象的长度属性-ES 5
在function
类型对象中,length
属性表示function
类型对象预期的参数数量。例如,在下面的可视化中,Function
对象、Array
对象中的length
字段具有值1
。
在上面的可视化中,length
字段也是object
类型ObjectArray.prototype
的成员,值为0
。
MDN表示:
Array.prototype.length
反映数组中的元素数量。
按照下面cars
&;bikes
数组中的此定义,
var cars = new Array("Saab", "Volvo", "BMW");
var bikes = ["Honda", "Yamaha"];
cars.__proto__.length
&;bikes.__proto__.length
仍然0
。
多个数组对象(cars
,bikes
)不能共享相同的length
属性值,因为length
属性位于Array.prototype
中。
1)
根据MDN,这是正确的定义吗?
2)
如果没有,Array.prototype
中的length
字段表示什么?
解决方案
MDN说:
Array.prototype.length
反映数组中的元素数。这是正确的定义吗?
索尔塔,是的。有三个与数组相关的不同.length
属性:
Array.length
。如您所说,它是所有函数都具有的实例("OWN")属性,与数组无关。arr.length
,其中arr
为数组实例(如arr = ['ex', 'ample']
)。每个数组都有这个special property,它的作用有点像getter/setter,自动确定对象具有的最高数组索引属性。Array.prototype.length
是#2的特例,因为Array.prototype
本身只是一个数组对象,默认为空,因此.length == 0
。
cars
、bikes
和Array.prototype
对象都有自己的.length
属性和自己的值(当然,更改其中一个不会更改其他值)。
那么Array.prototype.length
有什么目的呢?实际上不是很多,因为它通常被继承自Array.prototype
的数组对象自己的属性所隐藏。因此,除了因为规范说明Array.prototype
是数组实例并且那些具有该属性的对象存在之外,它还可以作为从Array.prototype
继承的普通(非数组)对象的合理默认值.length
-尽管这种情况非常少见。
相关文章