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数组就完全没问题。
答案 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[]