The previous answer to this question has been outdated for a while now.
First of all Array
requires a generic parameter:
var arr: Array<any>;
This is equivalent to:
var arr: any[];
Types Array<any>
and any[]
are identical and both refer to arrays with variable/dynamic size.
Typescript 3.0 introduced Tuples, which are like arrays with fixed/static size, but not really.
Let me explain.
Their syntax looks like this:
var arr: [any];
var arr: [any, any];
var arr: [any, any, any];
var arr: [string, number, string?, MyType];
Typescript will force you to assign an array of that length and with values that have the matching types.
And when you index the array typescript will recognize the type of variable at that index.
It's interesting to note that typescript wont stop you from modifying the size of the Tuple, either by using a function like .push()
or by assigning a value to length
. So you have to make sure you don't do it by accident.
You can also specify a "rest" type for any extra elements:
var arr: [any, any, ...any[]];
var arr: [string, number, string?, MyType, ...YourType[]];
In which case you can assign more items to the Tuple and the size of the array may change.
Note: You can not assign a normal array to a Tuple.
In case you only specify a rest type, then you get a regular old array.
The following 2 expressions are equivalent:
var arr: [...any[]];
var arr: any[];
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…