11
このTypescriptでどのように基本クラスのプロパティにアクセスしますか?
class A {
// Setting this to private will cause class B to have a compile error
public x: string = 'a';
}
class B extends A {
constructor(){super();}
method():string {
return super.x;
}
}
var b:B = new B();
alert(b.method());
のようなコードを使用しての提案があったと言っても9票を得ました。しかし、それを公式のTS遊び場に貼るとき http://www.typescriptlang.org/Playground/ それはあなたとエラーを与える。
BのAのxプロパティにアクセスするには?
チャンピオン!申し訳ありませんが、私は十分な評判を持っていません。 –
@AlexVaghin uは回答できる – basarat