对 ActionScript 3 中静态成员的反思
实际上这不仅仅是一个问题,但似乎是相关的。我很欣赏其中任何一个的线索。
有没有办法“反映”ActionScript 对象的静态成员(以编程方式获取该类型的所有静态属性/方法)?
为什么flash.utils.describeType(*)只能显示非静态成员?
Actually this is more than one question, but seems kind related. I appreciate any lead on any one of them.
Is there a way to "reflect on" static members of an ActionScript object (get all the static properties/methods of that type programmatically)?
Why is that flash.utils.describeType(*) can only show non-static members?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您调用describeType并传递对象的类,而不是对象本身,您将获得静态属性。
即:静态:
非静态:
If you call describeType and pass the class of the object, rather than the object, you'll get the static properties.
i.e.: static:
non-static: