Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do I delete/gc an object in Actionscript 3?

Tags:

I want to delete/force garbage collection on a class instance from inside itself. Obviously, this = null and delete this don't work. Is it any way I can do that, or am I barking up the wrong tree? I'm basically looking for a destructor of some sort..

I have a class instance that attempts to load an XML file, and if the file is not found, I want to destroy the instance, preferably from inside itself. The point is then to do some things in the parent class depending on whether the child instance is null or not.

I've thought of throwing an event to the parent and delete the child from there, but I'd prefer to do that only if there's no other way.

like image 679
evilpenguin Avatar asked Apr 02 '09 11:04

evilpenguin


2 Answers

You shouldn't attempt to remove object from itself - it is a bad practice, and in AS3 you can't do it for sure.

Object may be deleted (i.e. garbage collected) only if there are no references left to that object. Since references always get passed by value and object is generally not aware of which references to it exist, you can't delete object from itself. The only useful thing you can do is to create a method which will clean up all resources used by an instance. Such method will serve as a destructor, but you'll have to call it manually. Don't forget that event listeners will also prevent garbage collection unless you remove them.

There is also a difference between delete'ing a property and setting it to null. Effectively delete will remove a property from an instance of dynamic class. Whereas setting property value to null will not remove the property, but erase any reference that was stored there. Therefore both actions will destroy the reference that was stored in some property. Note, that you can't delete an object, only a property.

There are certain hacks that can be used to initiate garbage collection in flash players 9 and older ones. However recently System.gc() call got available, which does the same thing. Note, that you can't really rely on the fact that GC will actually be called. This is up to the flash player.

Returning to your question: throwing event and notifying parent that something went wrong is actually a good idea. You should stick to it. Moreover, it is better if parent will know of such event that way, and not when it will discover that some properties got magically nulled.

P.S.: Reading Grant Skinner articles on memory in flash player is actually a good idea.

like image 102
dragonfly Avatar answered Nov 08 '22 17:11

dragonfly


If the object was added to a DisplayContainer using the addChild() method, you can remove the object from the container from within the object, by using parent.removeChild(this). If there are no references to the object left after that, it will be picked up by the garbage collector.

The only problem is when you have event listeners within the object, which you can either remove manually or let the garbage collector do it for you by setting weakReference=true on all listeners.

like image 34
Lankaras Loerepoot Avatar answered Nov 08 '22 16:11

Lankaras Loerepoot