您好,登錄后才能下訂單哦!
在 TypeScript 中,super
關(guān)鍵字用于調(diào)用父類的方法或?qū)傩浴T谧宇愔?,通過super
關(guān)鍵字可以調(diào)用父類的構(gòu)造函數(shù)、普通方法和靜態(tài)方法。
class Animal {
constructor(name: string) {
console.log(`An animal named ${name} is created`);
}
}
class Dog extends Animal {
constructor(name: string) {
super(name);
console.log(`A dog named ${name} is created`);
}
}
const myDog = new Dog("Buddy");
class Animal {
sound(): void {
console.log("Animal makes sound");
}
}
class Dog extends Animal {
sound(): void {
super.sound();
console.log("Dog barks");
}
}
const myDog = new Dog();
myDog.sound();
class Animal {
static type(): void {
console.log("This is an animal");
}
}
class Dog extends Animal {
static type(): void {
super.type();
console.log("This is a dog");
}
}
Dog.type();
總之,super
關(guān)鍵字用于訪問父類的方法和屬性,可以在子類的構(gòu)造函數(shù)、普通方法和靜態(tài)方法中使用。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。