gpt4 book ai didi

c# - TypeScript:相当于 C# 的用于扩展类的通用类型约束?

转载 作者:行者123 更新时间:2023-12-02 22:17:34 24 4
gpt4 key购买 nike

我正在尝试编写一个 protected 抽象类,它可以将子类类型作为父类(super class)构造函数的方法签名中的类型参数。

我正在寻找类似于 C# 的通用类型约束(where 关键字),以便我可以在参数列表中使用子类型。

//                    where T : <base class name>
BaseAuthController<T> where T : BaseAuthController

当前父类(super class)

export abstract class BaseAuthController {
protected constructor(
protected dialogRef:
//This class shouldn't know about child classes
MatDialogRef<Child1DialogComponent> |
MatDialogRef<Child2DialogComponent> |
MatDialogRef<Child3DialogComponent>
) {

}
}

当前子类

export class Child1DialogComponent extends BaseAuthController {
constructor(dialogRef: MatDialogRef<Child1DialogComponent>) {
super(dialogRef);
}
}

理想的父类(super class)

export abstract class BaseAuthController<T> {
protected constructor(protected dialogRef: MatDialogRef<T>) {

}
}

引用文献

最佳答案

我认为您可能需要 self 限制的泛型:

export abstract class BaseAuthController<T extends BaseAuthController<T>> {
protected constructor(protected dialogRef: MatDialogRef<T>) {}
}

此行为通常在 TypeScript 中通过 polymorphic this types 完成。 ,但不能在构造函数中引用 this 类型。有一个open issue about this但看起来不会很快得到解决。幸运的是,您仍然可以 do it the way Java does 。你的子类应该可以正常工作:

export class Child1DialogComponent extends BaseAuthController<Child1DialogComponent> {
constructor(dialogRef: MatDialogRef<Child1DialogComponent>) {
super(dialogRef);
}
}

希望有帮助;祝你好运!

关于c# - TypeScript:相当于 C# 的用于扩展类的通用类型约束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51507036/

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