如何在中创建类型化数组TypeScript 0.9.0.1
?在0.8.x.x
中,我创建了一个像这样的类型化数组:
public myArray: myClass[] = new myClass[];
但是在TypeScript 0.9.0.1
,我得到这个错误:
error TS2068: 'new T[]' cannot be used to create an array. Use 'new Array<T>() instead.
如果我尝试以下方式:
public myArray: myClass[] = new myClass<myClass>();
我得到另一个错误。那么,在 TypeScript 中创建类型化数组的正确方法是什么?