typescript Przeciążeniefunkcji

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript Przeciążeniefunkcji相关的知识,希望对你有一定的参考价值。

// przeciążanie funkcji
// ====================

class BaseClassWithFunction {
    public id : number;
    getProperties() : string {
        return `id: ${this.id}`;
    }
}

class DerivedClassWithFunction
    extends BaseClassWithFunction {
    public name: string;
    getProperties() : string {
        return `${super.getProperties()}` + ` , name: ${this.name}`;
    }
}

var derivedClassWithFunction = new DerivedClassWithFunction();
derivedClassWithFunction.id = 1;
derivedClassWithFunction.name = "nazwaWKlasiePochodnej";
console.log(derivedClassWithFunction.getProperties());

以上是关于typescript Przeciążeniefunkcji的主要内容,如果未能解决你的问题,请参考以下文章

javascript Funkcjasprawdzającaczypodzagnieżdżonymikluczamiw obiekcie(JSON)s + dane

html HTML5中的模板元素 - 元素nie jest renderowanyprzezprzeglądarkę,możnazniegokorzystaćzpoziomu JS。 Odpowied

javascript Ustawienie obserwatoranawłaściwośćobiektuzmieniającegarównieżjegoinnawłaściwość

使用非 ASCII 字符反转字符串

typescript Strażnikityxów

typescript Wzorzecwstrzykiwaniazależności