如何获取对象的[[DefaultValue]]
根据 ecma262-3 8.6.2.6 [默认值]
http://bclary.com/2004/11/07/#a-8.6 .2.6
现在我想获取[ ]的[[DefaultValue]]
所以根据 ecma,像这样:
当使用提示 Number 调用 O 的 [[DefaultValue]] 方法时,将执行以下步骤:
1.使用参数“valueOf”调用对象 O 的 [[Get]] 方法。
[ ].valeOf() => [ ]//本身
2.如果 Result(1) 不是对象,则转至步骤 5。
[ ] 是一个对象
3.调用 Result(1) 的 [[Call]] 方法,使用 O 作为 this 值和空参数列表。
结果(1) => [ ]、[ ] 不实现 [[Call]]
4。如果 Result(3) 是原始值,则返回 Result(3)。
所以,没有结果(3),或者仍然是[]
5.使用参数“toString”调用对象 O 的 [[Get]] 方法。
[ ].toString =>; “”
6。如果 Result(5) 不是对象,则转至步骤 9。
结果(5) => "" 不是对象,转至步骤 9
7.调用 Result(5) 的 [[Call]] 方法,使用 O 作为 this 值和一个空参数列表。
8. 如果 Result(7) 是原始值,则返回 Result(7)。
9. 抛出TypeError异常。
错误?天啊!
according to ecma262-3 8.6.2.6 [DefaultValue]
http://bclary.com/2004/11/07/#a-8.6.2.6
now i want to get the [[DefaultValue]] of [ ]
so according to ecma,like this:
When the [[DefaultValue]] method of O is called with hint Number, the following steps are taken:
1. Call the [[Get]] method of object O with argument "valueOf".
[ ].valeOf() => [ ]//itself
2. If Result(1) is not an object, go to step 5.
[ ] is an object
3. Call the [[Call]] method of Result(1), with O as the this value and an empty argument list.
Result(1) => [ ],[ ] don't implement [[Call]]
4. If Result(3) is a primitive value, return Result(3).
so ,no Result(3),or it is still [ ]
5. Call the [[Get]] method of object O with argument "toString".
[ ].toString => ""
6. If Result(5) is not an object, go to step 9.
Result(5) => "" is not an object, go to step 9
7. Call the [[Call]] method of Result(5), with O as the this value and an empty argument list.
8. If Result(7) is a primitive value, return Result(7).
9. Throw a TypeError exception.
error? god!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对数组对象调用的
[[DefaultValue]]
最终到达(并调用)数组对象的toString
方法。该方法本质上是一个 Array.prototype.toString ,与在数组对象上调用 Array.prototype.join 相同(参见 15.4.4.2)。因此,空数组对象上的toString
返回空字符串 (""
),它是原始值,因此从 [[DefaultValue]] 返回内部方法。因此数组的 [[DefaultValue]] 是一个空字符串 - if
Array.prototype.string
未被覆盖/遮蔽,并且 ifArray.prototype.valueOf
不会被覆盖/隐藏。[[DefaultValue]]
called on array object eventually gets to (and calls) array object'stoString
method. That method is essentially anArray.prototype.toString
which is the same as callingArray.prototype.join
on an array object (see 15.4.4.2). SotoString
on an empty array object returns empty string (""
) which is a primitive value and is therefore returned from [[DefaultValue]] internal method.So [[DefaultValue]] of array is an empty string — if
Array.prototype.string
is not overwritten/shadowed, and ifArray.prototype.valueOf
is not overwritten/shadowed.