TypeScript には次のクラスがあります。
class bar {
length: number;
}
class foo {
bars: bar[] = new Array();
}
そして、私は持っています:
var ham = new foo();
ham.bars = [
new bar() { // <-- compiler says Expected "]" and Expected ";"
length = 1
}
];
TypeScriptでそれを行う方法はありますか?
アップデート
自分自身を返す set メソッドを持つことで、別の解決策を思いつきました。
class bar {
length: number;
private ht: number;
height(h: number): bar {
this.ht = h; return this;
}
constructor(len: number) {
this.length = len;
}
}
class foo {
bars: bar[] = new Array();
setBars(items: bar[]) {
this.bars = items;
return this;
}
}
したがって、次のように初期化できます。
var ham = new foo();
ham.setBars(
[
new bar(1).height(2),
new bar(3)
]);