AS3 从静态方法获取当前类名

发布于 2024-10-27 10:18:53 字数 104 浏览 1 评论 0原文

我必须在静态方法中读取当前的类名。对于非静态方法,我只需调用 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 技术交流群。

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

发布评论

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

评论(2

真心难拥有 2024-11-03 10:18:53

您可以使用 getQualifiedClassName(prototype.constructor)
在类的静态方法中

You can use getQualifiedClassName(prototype.constructor)
in the class' static method

再可℃爱ぅ一点好了 2024-11-03 10:18:53

你没有直接的方法来做到这一点。如果仅在一个类中需要它,则可以尝试添加一个静态成员来保存对该类的引用。

static private const CLASS:Object = YourReflectedClass;

然后,只需在静态方法中使用它:

protected static function doReflection(): void {
   var className:String = getQualifiedClassName(CLASS);
}

了解有关使用和设置的更多信息将会很有帮助。

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.

static private const CLASS:Object = YourReflectedClass;

then, just use that in your static method:

protected static function doReflection(): void {
   var className:String = getQualifiedClassName(CLASS);
}

It would be helpful to know more about the use and the setup.

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