溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

TypeScript中的super關(guān)鍵字如何使用

發(fā)布時(shí)間:2024-07-09 13:40:06 來源:億速云 閱讀:129 作者:小樊 欄目:編程語言

在 TypeScript 中,super 關(guān)鍵字用于調(diào)用父類的方法或?qū)傩浴T谧宇愔?,通過super關(guān)鍵字可以調(diào)用父類的構(gòu)造函數(shù)、普通方法和靜態(tài)方法。

  1. 調(diào)用父類的構(gòu)造函數(shù):
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");
  1. 調(diào)用父類的普通方法:
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();
  1. 調(diào)用父類的靜態(tài)方法:
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)方法中使用。

向AI問一下細(xì)節(jié)

免責(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)容。

AI