Sök…


Anmärkningar

Detta är ett grundläggande exempel som utvidgar en generisk bilklass och definierar en bilbeskrivningsmetod.

Hitta fler TypeScript-exempel här - TypeScript-exempel GitRepo

1 grundläggande klassarvsexempel med förlängningar och super sökord

En generisk bilklass har viss bilegenskap och en beskrivningsmetod

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 utökar den befintliga generiska bilklassen och lägger till ny fastighet.

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 statisk klassvariabelexempel - räkna hur många tidsmetoder som åberopas

här countInstance är en statisk klassvariabel

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow