TypeScript - クラス - 継承
公開日:2019-02-08 更新日:2019-05-14
1. 概要
クラスを継承します。
2. サンプル
class Test {
public test(): void {
console.log("Test");
}
}
class TestEx extends Test {
public test(): void {
console.log("TestEx");
}
}
const obj: Test = new Test();
obj.test(); //Test
const objEx: TestEx = new TestEx();
objEx.test(); //TestEx