TypeScript中的数组声明

时间:2017-10-25 12:21:33

标签: arrays typescript declaration

我对TypeScript有一些经验,但有一件事只是在我的脑海里继续玩。我知道Array<string>string[]之间的区别。我知道声明可以互换使用,例如。

export class SomeClass {

   someDeclaration: Array<SomeObject>;
   otherDeclaration: SomeObject[];

}

但在我的工作中,我面临其他宣言结构,即:

export class OtherClass {

   strangeDeclaration: [SomeObject];

}

我的问题是:声明数组是否正确?这种方式与其他(最流行的)方式有什么区别?结构来自哪里?

1 个答案:

答案 0 :(得分:4)

TypeScript数组可以按照您的建议编写Array<T>T[]

另一种类型是&#34; Tuple&#34;。在TS中,这转换为索引类型数组。 例如。它是在给定位置具有固定类型的数组。

示例&#39;元组数组&#39;:[Number, String]

Ts Docs explains this very well