我是C#的新手。 我想知道是否有可能像处理子列表一样创建子数组。 我的意思是我需要初始化一个2D数组,它不仅是一个数组,而且还有更多数组。
我会做类似的事情:
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { ChildComponent } from "../child/child.component";
@Component({
selector: 'app-parent',
template: `
Message: {{ message }}
<app-child></app-child>
`,
styleUrls: ['./parent.component.css']
})
export class ParentComponent implements AfterViewInit {
@ViewChild(ChildComponent) child;
constructor() { }
message:string;
ngAfterViewInit() {
this.message = this.child.message
}
}
获得由for循环生成的五个2D数组,分别为CC [1],CC [2],CC [3],CC [4],CC [5]。
有可能吗?目前我的代码给我错误,因为我没有定义CC。例如,如果我在listoflist [1]的for循环之前定义它,则显然可以。
非常感谢!