在TypeScript中,stations: any[];
和stations: any[] = [];
export class RoleConfigurationComponent implements OnInit {
stations: any[];
stations: any[] = [];
}
可以请任何人解释一下。
答案 0 :(得分:12)
<强> stations: any[];
强>
以上表示 stations
属于 type array of any
,但其 NOT 已初始化
<强> stations: any[] = [];
强>
以上表示您 initializing
站点 empty array
。