作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到这个类的继承结构:
class GrandParent{
funcA(){
console.log('GrandParent');
}
}
class Parent extends GrandParent{
funcA(){
console.log('Parent');
}
}
class Child extends Parent{
funcA(){
console.log('Child');
// how to call funcA of GrandParent -> super.super.funcA()
}
}
问题是:如何从 Child.funcA() 调用 GrandParent.funcA()?
Child
GrandParent
应该在控制台上登录。
谢谢;
最佳答案
这是矛盾的:您用新的实现覆盖了 GranParent.funcA
。如果您需要 GranParent.funcA
的功能,您可能需要稍微分解您的代码,并根据您的实际用例根据需要覆盖 Child.funcA
。
利用多态性:
class GrandParent {
doStuff() {
console.log('some stuff')
}
funcA() {
this.doStuff()
console.log('GrandParent')
}
}
class Parent extends GrandParent {
funcA() {
console.log('Parent')
}
}
class Child extends Parent {
funcA() {
this.doStuff()
console.log('child')
}
}
const child = new Child()
child.funcA()
关于javascript - 在javascript中调用祖父函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54415773/
您好,我想以如下图所示的层次结构方式显示数据 这是我的数据库表结构 这是我使用过的查询,但它不是我想要的完美结果 SELECT t1.parent_id AS primary_Id, t2.paren
给定 3 个 Azure DevOps 管道(可能存在更多),如下所示: 构建、单元测试、发布工件 部署暂存、集成测试 部署生产,烟雾测试 如何确保流水线 3 下载流水线 1 中发布的特定工件? 我所
我是一名优秀的程序员,十分优秀!