I've been looking to clear an array in ActionScript 3.
Some method suggest : array = [];
(Memory leak?)
Other would say : array.splice(0);
If you have any other, please share. Which one is the more efficient?
Thank you.
I've been looking to clear an array in ActionScript 3.
Some method suggest : array = [];
(Memory leak?)
Other would say : array.splice(0);
If you have any other, please share. Which one is the more efficient?
Thank you.
array.length = 0
or array.splice()
seems to work best for overall performance.
array.splice(0);
will perform faster than array.splice(array.length - 1, 1);
I wonder, why you want to clear the Array in that manner? clearing all references to that very array will make it available for garbage collection. array = []
will do so, if array
is the only reference to the array
. if it isn't then you maybe shouldn't be emtpying it (?)
also, please note that`Arrays accept Strings as keys. both splice and lenght operate solely on integer keys, so they will have no effect on String keys.
btw.: array.splice(array.length - 1, 1);
is equivalent to array.pop();
greetz
back2dos