How do you convert from a List to an array of a different type (e.g. I would like to go from List<Integer> to double[])
|
|
|||
|
|
Loops over the list and convert each element. Here's an example for
|
|||||
|
|
1) Iterate each element and convert it to |
|||||||
|
|
You have two separate conversions required. One is from a List to an array. The second is for each of the elements from one type to another. The second may or may not be possible. For the first see here. For the second there are well-defined transformations between numbers (ints, Doubles, etc.) Some are lossless, others lose precision. Many types have a String representation and so you can write:
and perhaps:
But you have to understand these - there is no magic. If there is no String serialization you will get the machine address of the object. |
||||
|
|
|
I hope this help full
|
|||
|
|
|
A general approach - takes any type of collection and any
|
|||
|
|
