示例代碼如下,請問如何在c類中調(diào)用a類中的new函數(shù)?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函數(shù)語句super.new(i) 調(diào)用的是 b類中的new函數(shù)。b類中的new函數(shù)好像把a類中的override了.
請問js類中如何調(diào)用父類的父類的函數(shù)?
蝴蝶不菲
2018-12-20 18:10:55