打字稿对象类型比较

时间:2020-08-26 17:43:42

标签: typescript

我正在尝试比较打字稿中的对象类型。

是否可以将类型作为参数进行传递并进行比较?类似于以下打字稿中的C#代码?

class A
{
}
class B
{
}
void Main()
{
    TypeTest(typeof(B));
}
void TypeTest(Type t)
{
    if (t == typeof(A))
    {
        ...
    }
    else (t == typeof(B))
    {
        ...
    }
}

1 个答案:

答案 0 :(得分:0)

Typescript类型会在运行时删除,但是也许您可以使用完美的javascript功能:原型。

class A {}
class B {}

function typeTest(prototype: any) {
    if (prototype === A.prototype) {
        //
    } else if (prototype === B.prototype) {
        //
    }
}

typeTest(A.prototype)