java中ArrayList转二维数组的方法
List
list.toArray(new int[0][]);
为什么写0?看ArrayList的toarray源码
public
if (a.length < size)
// Make a new array of a's runtime type, but my contents:
return (T[]) Arrays.copyOf(elementData, size, a.getClass());
System.arraycopy(elementData, 0, a, 0, size);
if (a.length > size)
a[size] = null;
return a;
}
当T泛型的长度
共有 0 条评论