4.6.4 추상 클래스
abstract class Animal {
move(): void {
console.log("roaming the earth...");
}
abstract makeSound(): void;
}class Dog extends Animal { }
// error TS2515: Non-abstract class 'Dog' does not implement inherited abstract member 'makeSound' from class 'Animal'.Last updated