AS3 字典 setPropertyIsEnumerable 被忽略

发布于 2024-11-15 16:26:09 字数 675 浏览 0 评论 0原文

有人可以向我解释为什么 Dictionary 类忽略 setPropertyIsEnumerable 吗?

我在 bugs.adobe 上发现这个 bug,似乎原型可能涉及某些狡猾的方式

这是一些测试代码:

var obj:Object = {
    'a': 0,
    'b': 1,
    'c': 2
}

obj.setPropertyIsEnumerable('a', false)

trace("object\n")
for (var op:* in obj)
{
    trace(op)
}

var dict:Dictionary = new Dictionary()
dict['a'] = 0
dict['b'] = 1
dict['c'] = 2

dict.setPropertyIsEnumerable('a', false)

trace("dictionary\n")
for (var dp:* in dict)
{
    trace(dp)
}

输出是:

object

c
b
dictionary

c
a
b

请注意,字典仍然枚举属性“a”,即使它被告知不要这样做。

Can someone explain to me why the Dictionary class ignores setPropertyIsEnumerable?

I found this bug at bugs.adobe, seems the prototype might be involved in some devious way

Here is some test code:

var obj:Object = {
    'a': 0,
    'b': 1,
    'c': 2
}

obj.setPropertyIsEnumerable('a', false)

trace("object\n")
for (var op:* in obj)
{
    trace(op)
}

var dict:Dictionary = new Dictionary()
dict['a'] = 0
dict['b'] = 1
dict['c'] = 2

dict.setPropertyIsEnumerable('a', false)

trace("dictionary\n")
for (var dp:* in dict)
{
    trace(dp)
}

Output of this is:

object

c
b
dictionary

c
a
b

Notice that the Dictionary is still enumerating the property "a" even though it was told not to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倾城泪 2024-11-22 16:26:09

这是我的猜测... Dictionary 正在重写 nextName 以返回字典的键。它使用自己的实现,因此忽略了setPropertyIsEnumerable。

我还不能证明这一点,但我正在努力。我想我应该抛弃这个假设,看看它是否会引发什么。

Here is my guess... Dictionary is overriding nextName in order to return the keys of the dictionary. It is using it's own implementation of it such that it is ignoring setPropertyIsEnumerable.

I can't prove it yet, but I am trying. I thought I would throw out this hypothesis to see if it sparks anything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文