gpt4 book ai didi

haxe - 如何获取类名作为字符串?

转载 作者:行者123 更新时间:2023-12-04 13:38:39 25 4
gpt4 key购买 nike

我如何获得字符串中的类名?

我尝试了这个:

Type.getClassName(this));

这是我目前所在的类(class),但出现错误:
com.SubWidget should be Class<Dynamic>

有什么帮助吗?

最佳答案

您应该将Class传递给Type.getClassName。因此,首先使用Type.getClass来抓取它,如下所示:

http://try.haxe.org/#6A196

class Test {
static function main() new Test();

function new()
{
var className = Type.getClassName(Type.getClass(this));
trace('Current class name = $className');
}
}

另请参阅: http://api.haxe.org/Type.html#getClassName

关于haxe - 如何获取类名作为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28434916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com