java中ArrayList转二维数组的方法

List list = new ArrayList<>();
list.toArray(new int[0][]);

为什么写0?看ArrayList的toarray源码
public T[] toArray(T[] a) {
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泛型的长度

java中ArrayList转二维数组的方法最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/10173.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>