gpt4 book ai didi

class - 获取 Haxe 中具有空值的类字段的类型

转载 作者:行者123 更新时间:2023-12-04 08:43:25 26 4
gpt4 key购买 nike

是否可以获取haxe中空值字段的类?

函数“Type.getClass”获取值的类(在运行时设置),但我需要获取在编译时定义的类。

函数“getClassFields”仅返回字段名称,不返回类。

例如:

class MyCls
{
public static var i:Int = null;
public static var s:String = null;
}

trace(Type.getClass(MyCls.i)); // show "null", but I need to get Int
trace(Type.getClass(MyCls.s)); // show "null", but I need to get String

在我的情况下,我无法更改 MyCls 类的来源。

谢谢。

最佳答案

您可以尝试运行时类型信息。这是一个 Haxe 功能,允许在运行时获取类型的完整描述。 http://haxe.org/manual/cr-rtti.html

关于class - 获取 Haxe 中具有空值的类字段的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40716725/

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