]> source.dussan.org Git - sonarqube.git/blob
28d6eed5cbca7aeb8b251fbb4bf2c362d03055ad
[sonarqube.git] /
1 <p> This method uses the toArray() method of a collection derived class, and passes
2 in a zero-length prototype array argument.  It is more efficient to use
3 <code>myCollection.toArray(new Foo[myCollection.size()])</code>
4 If the array passed in is big enough to store all of the
5 elements of the collection, then it is populated and returned
6 directly. This avoids the need to create a second array
7 (by reflection) to return as the result.</p>