TypeScript静态方法继承
Posted ystrdy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeScript静态方法继承相关的知识,希望对你有一定的参考价值。
同步版本
class Foo {
static boo<T extends typeof Foo>(this: T, a: number): InstanceType<T> {
return (new this()) as InstanceType<T>;
}
}
class Bar extends Foo {}
// b: Bar
let b = Bar.boo(1);
异步版本
class Foo {
static async boo<T extends typeof Foo>(this: T, a: number): Promise<InstanceType<T>> {
const instance = new this();
await instance.create();
return <InstanceType<T>>instance;
}
private create(){}
}
class Bar extends Foo {}
(async () => {
// b: Bar
let b = await Bar.boo(1);
})();
引用自:https://github.com/Microsoft/TypeScript/issues/5863
以上是关于TypeScript静态方法继承的主要内容,如果未能解决你的问题,请参考以下文章
TypeScript核心篇——类(class)-可选参数-存取器-构造函数-静态属性方法-抽象类
从扩展 Typegoose 并包含静态类型特定方法的父类继承