I needed a dynamic array so I did an ArrayList. My actual method needs to return a int array. SO in order to do that do I have to declare an in array of the size of my ArrayList and then get each element out convert it to an int and then put it into my int array or is there a way I can do it in one shot w/o a loop?
Bert Bates
author
Sheriff
Joined: Oct 14, 2002
Posts: 8439
posted
0
Anthony - You can get part way there by calling the toArray( ) method, that'll get you an array of Objects...
Eliminate fossil fuel subsidies. (If you're not on the edge, you're taking up too much room.)
Jim Yingst
Wanderer
Sheriff
Joined: Jan 30, 2000
Posts: 18652
posted
0
Or, assuming your ArrayList contains Integer objects, you can get a tiny bit further with
This way you have an Integer[] rather than an Object[]. But still, if what you really wanted was an int[], you need a loop. And as long as you have to do that anyway, you might as well forget the toArray() stuff and build the array you want directly:
It would be nice if there were a one-liner for this, but it's not that big a deal really...