您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關super 關鍵字在ES6中的作用是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。
1、當作函數(shù)使用
class A {} class B extends A { constructor() { super(); //ES6 要求,子類的構造函數(shù)必須執(zhí)行一次super函數(shù)。 } }
注意,super雖然代表了父類A的構造函數(shù),但是返回的是子類B的實例,即super內部的this指的是B,因此super()在這里相當于A.prototype.constructor.call(this)。
class A { constructor() { console.log(new.target.name); //new.target指向當前正在執(zhí)行的函數(shù) } } class B extends A { constructor() { super(); } } new A() // A new B() // B
可以看到,在super()執(zhí)行時,它指向的是子類B的構造函數(shù),而不是父類A的構造函數(shù)。也就是說,super()內部的this指向的是B。
2、當作對象使用
在普通方法中,指向父類的原型對象;在靜態(tài)方法中,指向父類。
class A { c() { return 2; } } class B extends A { constructor() { super(); console.log(super.c()); // 2 } } let b = new B();
上面代碼中,子類B當中的super.c(),就是將super當作一個對象使用。這時,super在普通方法之中,指向A.prototype,所以super.c()就相當于A.prototype.c()。
通過super調用父類的方法時,super會綁定子類的this。
class A { constructor() { this.x = 1; } s() { console.log(this.x); } } class B extends A { constructor() { super(); this.x = 2; } m() { super.s(); } } let b = new B(); b.m() // 2
上面代碼中,super.s()雖然調用的是A.prototype.s(),但是A.prototype.s()會綁定子類B的this,導致輸出的是2,而不是1。也就是說,實際上執(zhí)行的是super.s.call(this)。
由于綁定子類的this,所以如果通過super對某個屬性賦值,這時super就是this,賦值的屬性會變成子類實例的屬性。
class A { constructor() { this.x = 1; } } class B extends A { constructor() { super(); this.x = 2; super.x = 3; console.log(super.x); // undefined console.log(this.x); // 3 } } let b = new B();
上面代碼中,super.x賦值為3,這時等同于對this.x賦值為3。而當讀取super.x的時候,讀的是A.prototype.x,所以返回undefined。
注意,使用super的時候,必須顯式指定是作為函數(shù)、還是作為對象使用,否則會報錯。
class A {} class B extends A { constructor() { super(); console.log(super); // 報錯 } }
看完上述內容,你們對super 關鍵字在ES6中的作用是什么有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。