Java泛型 不能创建泛型数组
不允许泛型 参数化类型的数组。
//Cannot create a generic array of Box<Integer>
Box<Integer>[] arrayOfLists = new Box<Integer>[2];
由于编译器使用类型擦除,因此类型参数被替换为 Object类型,用户可以将任何类型的对象添加到数组中。并且在运行时,代码将无法抛出 ArrayStoreException异常。
// compiler error, but if it is allowed
Object[] stringBoxes = new Box<String>[];
// OK
stringBoxes[0] = new Box<String>();
// An ArrayStoreException should be thrown,
//but the runtime can't detect it.
stringBoxes[1] = new Box<Integer>();
热门文章
优秀文章