AS3 从静态方法获取当前类名
我必须在静态方法中读取当前的类名。对于非静态方法,我只需调用 getQualifiedClassName(this) 很容易,但在静态方法中,这当然是无效的。有什么想法吗?
谢谢
i have to read the current class name inside a static method. For non-static method it's easy i just call getQualifiedClassName(this) but inside a static method this is off course invalid. Any idea ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 getQualifiedClassName(prototype.constructor)
在类的静态方法中
You can use getQualifiedClassName(prototype.constructor)
in the class' static method
你没有直接的方法来做到这一点。如果仅在一个类中需要它,则可以尝试添加一个静态成员来保存对该类的引用。
然后,只需在静态方法中使用它:
了解有关使用和设置的更多信息将会很有帮助。
You don't have a direct way of doing this. If is just inside one class that you need this, you can try to add a static member holding a reference to the class.
then, just use that in your static method:
It would be helpful to know more about the use and the setup.