如何获取对象的[[DefaultValue]]

发布于 2024-11-04 03:25:55 字数 988 浏览 3 评论 0原文

根据 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云之铃。 2024-11-11 03:25:55

对数组对象调用的 [[DefaultValue]] 最终到达(并调用)数组对象的 toString 方法。该方法本质上是一个 Array.prototype.toString ,与在数组对象上调用 Array.prototype.join 相同(参见 15.4.4.2)。因此,空数组对象上的 toString 返回空字符串 (""),它原始值,因此从 [[DefaultValue]] 返回内部方法。

因此数组的 [[DefaultValue]] 是一个空字符串 - if Array.prototype.string 未被覆盖/遮蔽,并且 if Array.prototype.valueOf 不会被覆盖/隐藏。

[]+''; // ""

Array.prototype.toString = function(){return 1};
[]+''; // "1"

Array.prototype.valueOf = function(){return 2};
[]+''; // "2"

[[DefaultValue]] called on array object eventually gets to (and calls) array object's toString method. That method is essentially an Array.prototype.toString which is the same as calling Array.prototype.join on an array object (see 15.4.4.2). So toString 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 if Array.prototype.valueOf is not overwritten/shadowed.

[]+''; // ""

Array.prototype.toString = function(){return 1};
[]+''; // "1"

Array.prototype.valueOf = function(){return 2};
[]+''; // "2"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文