我需要一个函数,它从候选列表中返回给定类型的所有实例,所有这些都来自一个公共超类。
例如我可以写:
class A {
protected children: A[] = [];
getChildrenOfType<T extends A>(): T[] {
let result: T[] = [];
for (let child of this.children) {
if (child instanceof T)
result.push(<T>child);
}
return result;
}
}
与例如
class B: extends A {}
class C: extends B {}
class D: extends A {}
等
然而,这不编译。 child instanceof T
给我“'T'仅指一种类型,但在这里被用作值”。但是,任何具体的类(例如C)都在那里工作。这显然是造成问题的通用类型。在这种情况下使用的正确结构是什么?是否还需要其他东西来实现这种通用过滤?
答案 0 :(得分:4)
您可以使用此代码。
ActionBar
class A {
protected children: A[] = [];
getChildrenOfType<T extends A>(t: new (...args: any[]) => T): T[] {
let result: T[] = [];
for (let child of this.children) {
if (child instanceof t)
result.push(<T>child);
}
return result;
}
}
的右侧需要是构造函数,例如instanceof
。您可以将其作为参数提供给方法。
new() => MyClass
方法可以这样使用:
getChildrenOfType