28 Jan
2007
28 Jan
'07
4:20 p.m.
Is there a way to explicitly destroy object references? For instance, in a loop, I am creating an array of objects like so: Object objects[4]; 0 => int count; for(0 => int i; i < 4; i++ ) { new Object @=> objects[count]; count++; } Now how would I delete the Object referenced at, say, objects[0]? If I reassign an Object to objects[0], what happens to the object that was there? Is it destroyed and cleaned up, or do I need to delete the object from memory somehow? Thanks D