Actionscript - 获取给定类名的方法列表
我想获取一个类可用的方法列表,给定其名称。我该怎么做?
I want to obtain a list of methods available to a class, given its name. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是所谓的内省,而AS3做内省的能力是有限的。
这是您能做的最好的事情,
不幸的是,这是限制,只能向您展示具有公共访问器的方法。您也可以查看输出
,看看还有哪些内容可供查看。
This is called introspection, and AS3 has a limited ability to do introspection.
Here is about the best you can do,
Unfortunately, this is the limitation and will only be able to show you methods with public accessors. You can look at the output of
as well, to see what else is available for viewing.