How can I fill a array with the data provided by one List?
For example, I have a List with Strings:
List l = new ArrayList<String>();
l.add("a");
l.add("b");
l.add("c");
then I want to copy this data into a String array:
String[] array = ?
|
How can I fill a array with the data provided by one List? For example, I have a List with Strings:
then I want to copy this data into a String array:
|
||||
|
|
|
There's a toArray() method in list... For example:
You can also do the new call inside the parentheses of toArray |
|||||||||||
|
|
First, you have to specify the concrete type of the Then, you can do
|
|||
|
|
|
You can use the
Or alternately:
The difference between the two is that the latter may not need to allocate a new array. Effective Java 2nd Edition: Item 23: Don't use raw types in new code.
Don't make a habit of naming an identifier |
||||
|
|
|
Syntax is a little goofy; you have to provide your own created array as input.
|
|||
|
|