TypeScript에서 배열을 인스턴스화, 초기화 및 채우는 방법은 무엇입니까? TypeScript에는 다음 클래스가 있습니다. class bar { length: number; } class foo { bars: bar[] = new Array(); } 그리고 나는 : var ham = new foo(); ham.bars = [ new bar() { // { if ( i == 0 ) { // Create the first element of the array. this.products = Array(result); } else { // Add to the array of maps. this.products.push(result); } }); Where product.ts look like... expo..