示例代碼如下,請問如何在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了.
請問js類中如何調用父類的父類的函數?
蝴蝶不菲
2018-12-20 18:10:55