I have a vector of float arrays i.e. Vector . I want to convert this to one float array i.e. move every element in every float[] within the vector to a new float[]. Am a bit puzzled on using the Java built in method vector.toArray() to do this. Any ideas pls?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
There are several ways to do this. You can invoke Here's an example of the latter:
With Guava, it looks like you can do this with one line using
See alsoIt should also be noted that unless you need the thread-safety of See also |
|||||||||||
|
|
Vector.toArray() will give you an array of arrays, i.e a two dimensional array. once you have that, you can iterate the array till the length and copy each individual array into one big array. Works for you? |
|||
|
|