gpt4 book ai didi

typescript - 调用超父类(super class)的方法

转载 作者:搜寻专家 更新时间:2023-10-30 22:04:44 26 4
gpt4 key购买 nike

当每个类都包含同名方法时,我无法访问层次结构中的方法。

class A { 
constructor(private name: string) { }
notify() { alert(this.name) }
}

class B extends A {
constructor() {
super("AAA")
}

notify() {alert("B") }
}

class C extends B {
notify() { alert("C") }

callA() {
this.notify(); // this alerts "C"
super.notify(); // this alerts "B"

// How to call notify() of the class A so it alerts "AAA"?
}
}

new C().callA();

最佳答案

虽然我质疑要求您这样做的设计,但您可以通过获取 A.prototype 的原始方法并使用 call 轻松实现此目的:

class C extends B { 
notify() { alert("C") }

callA() {
A.prototype.notify.call(this);
}
}

关于typescript - 调用超父类(super class)的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49056364/

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