new String[0] 你定义的就是 0 啊, new String[list.size()] 试下
我的意思是为啥要规定是0,不是我敲得,在网上看到的
就应该是0.这没毛病
为啥规定要是0啊?
以下是ArrayList的源码,这里有个数组长度和列表长度的比较,注意看注释的那句话:)
public <T> 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; }