Javaジェネリックス-配列なし
パラメータ化された型の配列は許可されていません。
//Cannot create a generic array of Box<Integer>
Box<Integer>[] arrayOfLists = new Box<Integer>[2];
コンパイラは型消去を使用するため、typeパラメータは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>();