No se permiten matrices de tipos parametrizados.
//Cannot create a generic array of Box<Integer>
Box<Integer>[] arrayOfLists = new Box<Integer>[2];
Debido a que el compilador usa el borrado de tipos, el parámetro de tipo se reemplaza con Object y el usuario puede agregar cualquier tipo de objeto a la matriz. Y en tiempo de ejecución, el código no podrá lanzar 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>();