请问js类中如何调用父类的父类的函数?

示例代码如下,请问如何在c类中调用a类中的new函数?

class a {
    _x: number;
    constructor() {
        this._x = 1;
    }
    new(i: number) {
        this._x = i;
    }
}
class b extends a {
    _y: number;
    constructor() {
        super();
        this._y = 2;
    }
    new(i: number) {
        this._y = i;
    }
}
class c extends b {
    _z: number;
    constructor() {
        super();
        this._z = 3;
    }
    new(i: number) {
        super.new(i);
    }
}

上面代码 c类的new函数语句super.new(i) 调用的是 b类中的new函数。b类中的new函数好像把a类中的override了.

阅读 5.5k
2 个回答

可以直接调用父类中函数,如下所以

class a {
    constructor() {
        this._x = 1;
    }
    new1(i) {
        this._x = i;
    }
}
class b extends a {
    constructor() {
        super();
        this._y = 2;
    }
    new2(i) {
        this._y = i;
    }
}
class c extends b {
    constructor() {
        super();
        this._z = 3;
    }
    new3(i) {
        super.new(i);
    }
}

var cIns=new c();
console.log(cIns._x)
cIns.new1(4);
console.log(cIns._x)
//输出
//1
//4

如果new名字一样,用下面这种方式

class a {
    constructor() {
        this._x = 1;
    }
    new(i) {
        this._x = i;
    }
}
class b extends a {
    constructor() {
        super();
        this._y = 2;
    }
    new(i) {
        this._y = i;
    }
}
class c extends b {
    constructor() {
        super();
        this._z = 3;
    }
    new(i) {
        super.new(i);
    }
}

var cIns=new c();
console.log(cIns._x)  //1
cIns.__proto__.__proto__.__proto__.new.call(cIns,4)
console.log(cIns._x)//4

你b类都没有调用super.new

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏