- 2019.01.17
- Typescript, インターフェース, 継承,
[Typescript] クラスの継承と抽象クラスの使い方
Typescriptの継承 Typescript のクラスは別のクラスを継承することが可能です。 継承には クラス名を宣言した後ろに extends を使います。 class ParentClass { xxx: string; protected hoge: number = 1; parentMethod() { console.log('parent method called ...'); […]