为什么需要在ArrayList的构造中将类型转换为Object数组?

时间:2011-12-15 13:53:03

标签: java collections

  public ArrayList(Collection<? extends E> c) {
elementData = c.toArray();
size = elementData.length;
// c.toArray might (incorrectly) not return Object[] (see 6260652)
if (elementData.getClass() != Object[].class)
    elementData = Arrays.copyOf(elementData, size, Object[].class);
}

代码是java.util.ArrayList的构造。 你可以在http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6260652

查看bug 6260652的详细信息

我的问题是,如果我不转换类型,会发生什么问题?因为我认为如果elementData引用subType数组就完全没问题。

1 个答案:

答案 0 :(得分:12)

以下是没有相关转化可能出错的示例:

List<Object> l = new ArrayList<Object>(Arrays.asList("foo", "bar"));

// Arrays.asList("foo", "bar").toArray() produces String[], 
// and l is backed by that array

l.set(0, new Object()); // Causes ArrayStoreException, because you cannot put
                        // arbitrary Object into String[]