I have a variable like that:
List<Double> frameList = new ArrayList<Double>();
/* Double elements has added to frameList */
How can I have a new variable has a type of double[] from that variable in Java with high performance?
|
|
|
High performance - every
Thanks for the additional question in the comments ;) Here's the sourcecode of the fitting
(And trust me, I didn't use it for my first answer - even though it looks ... pretty similiar :-D ) By the way, the complexity of Marcelos answer is O(2n), because it iterates twice (behind the scenes): first to make a |
||||
|
You can convert to a |
|||
|
|
|
You can use the ArrayUtils class from commons-lang to obtain a double[] from a Double[].
|
|||||||||||||||
|
|
Guava has a method to do this for you: double[] Doubles.toArray(Collection<Double>) This isn't going to be any faster than just looping through the |
||||
|
|