TypeScript サイトのプレイグラウンドからの継承の例を参照してください。
class Animal {
public name;
constructor(name) {
this.name = name;
}
move(meters) {
alert(this.name + " moved " + meters + "m.");
}
}
class Snake extends Animal {
constructor(name) {
super(name);
}
move() {
alert("Slithering...");
super.move(5);
}
}
class Horse extends Animal {
constructor(name) {
super(name);
}
move() {
alert(super.name + " is Galloping...");
super.move(45);
}
}
var sam = new Snake("Sammy the Python");
var tom: Animal = new Horse("Tommy the Palomino");
sam.move();
tom.move(34);
コードの 1 行を変更しました: のアラートですHorse.move()
。そこにアクセスしたいのですsuper.name
が、それはundefined
. IntelliSense は、私がそれを使用できることを示唆しており、TypeScript は正常にコンパイルされますが、機能しません。
何か案は?