Bootstrap

6.ts 抽象类

//定义一个接口
interface Radio {
  switchRadio(trigger: boolean): void;
}
//继承这个接口  可以重写属性和方法
class Car implements Radio {
  switchRadio(trigger) {
    return 123
  }
}
//继承第二个方法
class Cellphone implements Radio {
  switchRadio() {

  }
}
//只读,不能修改
interface Battery {
  checkBatteryStatus(): void;
}

// 要实现多个接口,我们只需要中间用 逗号 隔开即可。
class Cellphone implements Radio, Battery {
  switchRadio() {
  }
  checkBatteryStatus() {

  }
}


关键字, extends    

class Radiotwo extends Radio{
    checkBatteryStatus():void;
}


class Cell implements Radiotwo{
    switchRadio(trigger){
        
    }
    checkBatteryStatus(){
    
    }
}

class  

;