首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java面试 >

相干泛型数组的创建

2013-01-18 
有关泛型数组的创建请看一下下面这个例子:class GenericT {}public class ArrayOfGeneric{static final

有关泛型数组的创建
请看一下下面这个例子:
class Generic<T> {}

public class ArrayOfGeneric{
  static final int SIZE = 100;
  static Generic<Integer>[] gia;
  @SuppressWarnings("unchecked")
  public static void main(String[] args){
  gia = (Generic<Integer>[])new Object[SIZE];
  System.out.println(gia.getClass().getSimpleName());
  gia[0] = new Generic<Integer>();
  }
}

为什么在运行时因为这条语句:
gia = (Generic<Integer>[])new Object[SIZE];
报java.lang.ClassCastException的错误?

我的理解,在运行时,该语句擦除为:
gia = (Generic[])new Object[SIZE];
将Object[]数组转换为Generic[]数组,应该不会报一个运行时的异常的啊?



[解决办法]
你在 非技术区 提问的~

热点排行