Garbage Collection and Del() in Design Philosophy
|
|
I was wondering if, since the project I'm working on is already fairly well done (yet not very efficient), it it was possible for me to be lazy and simply override the Del() proc for an object and simply set the reference variables it has to null as well as its loc and allow the garbage collector to take it from there. I ask this because I realize del() calls Del() at some point but I wasn't sure if I would have to go through the entire source code and redo each del() by itself or if this override would suffice and ultimately save some processing power and memory.
|