我想采用一个传递的List,我知道它是同构的,并从中创建一个与其中元素相同类型的数组。
像...一样的东西。
List<Object> lst = new ArrayList<Object>;
lst.add(new Integer(3));
/// somewhere else ...
assert(my_array instanceof Integer[]);
答案 0 :(得分:15)
转换将在运行时发生,而类型在编译时丢失。所以你应该这样做:
public <T> T[] toArray(List<T> list) {
Class clazz = list.get(0).getClass(); // check for size and null before
T[] array = (T[]) java.lang.reflect.Array.newInstance(clazz, list.size());
return list.toArray(array);
}
但要注意上面的第3行可能会抛出异常 - 它不是类型安全的。
答案 1 :(得分:1)
此方法是类型安全的,并处理一些空值(至少一个元素必须为非null)。
public static Object[] toArray(Collection<?> c)
{
Iterator<?> i = c.iterator();
for (int idx = 0; i.hasNext(); ++idx) {
Object o = i.next();
if (o != null) {
/* Create an array of the type of the first non-null element. */
Class<?> type = o.getClass();
Object[] arr = (Object[]) Array.newInstance(type, c.size());
arr[idx++] = o;
while (i.hasNext()) {
/* Make sure collection is really homogenous with cast() */
arr[idx++] = type.cast(i.next());
}
return arr;
}
}
/* Collection is empty or holds only nulls. */
throw new IllegalArgumentException("Unspecified type.");
}
答案 2 :(得分:0)
java.lang.reflect.Array.newInstance(Class<?> componentType, int length)
答案 3 :(得分:0)
如果你需要根据仅在运行时知道的类型动态创建一个数组(比如你正在做反射或泛型),你可能需要Array.newInstance