我正在将JavaScript库转换为Haxe。 似乎Haxe与JS非常相似,但在工作中我遇到了覆盖函数的问题。
例如,在以下函数中,param
可以是整数或数组。
JavaScript的:
function testFn(param) {
if (param.constructor.name == 'Array') {
console.log('param is Array');
// to do something for Array value
} else if (typeof param === 'number') {
console.log('param is Integer');
// to do something for Integer value
} else {
console.log('unknown type');
}
}
HAXE:
function testFn(param: Dynamic) {
if (Type.typeof(param) == 'Array') { // need the checking here
trace('param is Array');
// to do something for Array value
} else if (Type.typeof(param) == TInt) {
trace('param is Integer');
// to do something for Integer value
} else {
console.log('unknown type');
}
}
当然,Haxe支持Type.typeof()
,但ValueType
没有Array
。我该如何解决这个问题?
答案 0 :(得分:8)
在Haxe中,您通常使用Std.is()
代替Type.typeof()
:
if (Std.is(param, Array)) {
trace('param is Array');
} else if (Std.is(param, Int)) {
trace('param is Integer');
} else {
trace('unknown type');
}
也可以使用Type.typeof()
,但不太常见 - 您可以使用pattern matching来实现此目的。数组为ValueType.TClass
,其参数为c:Class<Dynamic>
:
switch (Type.typeof(param)) {
case TClass(Array):
trace("param is Array");
case TInt:
trace("param is Int");
case _:
trace("unknown type");
}