Other than looping through each element in an array and setting each one to null, is there a native function in Java / processing to simply empty an array (or destroy it, to be able to redeclare it as a new array)?
|
There's
Not that it does anything different than you'd do on your own (it just loops through every element and sets it to null). It's not native in that it's pure Java code that performs this, but it is a library function if maybe that's what you meant. This of course doesn't allow you to resize the array (to zero), if that's what you meant by
"empty". Array sizes are fixed, so if you want the "new" array to have different dimensions you're best to just reassign the reference to a new array as the other answers demonstrate. Better yet, use a |
|||||||||||
|
|
You can simply assign
This will 'clear out' the array. You can also assign a new array to that reference if you like:
If you are worried about memory leaks, don't be. The garbage collector will clean up any references left by the array. Another example:
This will create a new |
|||||||||||||
|
|
I just want to add something to Mark's comment. If you want to reuse array without additional allocation, just use it again and override existing values with new ones. It will work if you fill the array sequentially. In this case just remember the last initialized element and use array until this index. It is does not matter that there is some garbage in the end of the array. |
||||
|
float[] xco=new float[1024];– ina Nov 17 '10 at 20:11