任何[]和任何[] = []之间的差异

时间:2018-01-09 07:45:51

标签: angular typescript

在TypeScript中,stations: any[];stations: any[] = [];

之间有什么区别
export class RoleConfigurationComponent implements OnInit {
   stations: any[];
   stations: any[] = [];
}

可以请任何人解释一下。

1 个答案:

答案 0 :(得分:12)

<强> stations: any[];

以上表示 stations 属于 type array of any ,但其 NOT 已初始化

<强> stations: any[] = [];

以上表示您 initializing 站点 empty array