TypeScript
Typescriptの基本的な例
サーチ…
備考
これは、一般的な車クラスを拡張し、車の記述方法を定義する基本的な例です。
タイプスクリプトの例をここで見つける - TypeScriptの例GitRepo
extendsとsuperキーワードを使用した1つの基本クラス継承の例
一般的なCarクラスには、いくつかのcarプロパティとdescriptionメソッドがあります
class Car{
name:string;
engineCapacity:string;
constructor(name:string,engineCapacity:string){
this.name = name;
this.engineCapacity = engineCapacity;
}
describeCar(){
console.log(`${this.name} car comes with ${this.engineCapacity} displacement`);
}
}
new Car("maruti ciaz","1500cc").describeCar();
HondaCarは既存のジェネラルカークラスを拡張し、新しいプロパティを追加します。
class HondaCar extends Car{
seatingCapacity:number;
constructor(name:string,engineCapacity:string,seatingCapacity:number){
super(name,engineCapacity);
this.seatingCapacity=seatingCapacity;
}
describeHondaCar(){
super.describeCar();
console.log(`this cars comes with seating capacity of ${this.seatingCapacity}`);
}
}
new HondaCar("honda jazz","1200cc",4).describeHondaCar();
2 static class variableの例 - 呼び出されているメソッドの時間の数をカウントする
countInstanceは静的なクラス変数です
class StaticTest{
static countInstance : number= 0;
constructor(){
StaticTest.countInstance++;
}
}
new StaticTest();
new StaticTest();
console.log(StaticTest.countInstance);
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow