Question

Is it possible in Actionscript 3 to create a weak reference to an object, so that it can be garbage collected.

I'm creating some classes to make debugging easier, so I don't want the objects to hang around in memory if they are only referenced here (and of course I don't want to fill the code with callbacks to remove the objects)

Was it helpful?

Solution

Grant Skinner has written an excellent series of articles on resource management in ActionScript 3, and in the third part of that series he introduces the WeakReference and the WeakProxyReference helper classes that can be used for this.

OTHER TIPS

Right now I've made a simple class to take advantage of the Dictionary weakKeys parameter:

public class WeakReference
{
    private var dic

    public function WeakReference(object)
    {
        this.dic = new Dictionary(true)
        this.dic[object] = true
    }

    public function get Value()
    {
        for (var object in this.dic)
        {
            return object
        }
        return null
    }
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top