What techniques exist to automatically free objects in delphi applications?
|
1
|
|
|
|
|
|
Use interfaces instead of objects. They are reference counted and freed automatically when the reference count reaches 0. |
||||||||
|
|
|
Use the object ownership of components that the VCL provides. As long as you create objects with a non-nil owner you don't need to free them explicitely. See also my answer to this question. |
||
|
|
|
|
I have to say, I don't like "hiding" the Free of an object. Far better to have the traditional code:
No way it can go wrong, works as expected, and people recognise the pattern. |
||||||||
|
|
|
Along the lines of interfaces, you can try the
There are overloads for objects and If you have a factory function, you might be creating an object, setting some of its properties, and then returning it. If an exception occurs while setting the properties, you'll want to make sure you free the object since you can't return it. One way to do that is like this:
With
The |
||
|
|
|
|
I have written a function GC(obj: TObject) (for Garbage Collect) which takes an object and frees it when the execution leaves the current method. It's kind of like a one-line shorthand function for a Try Finally Free block. Instead of:
I just have:
The GC function simply returns an object in the form of an interface.
Because the TGarbo class descends from TInterfacedObject, when the TGarbo object goes out of scope it will automatically get freed. In the destructor of the TGarbo object, it also frees the object you passed to it in it's constructor (the object you passed in the GC function).
Being stuck in the world of Delphi 7 with no sight of upgrading to a version of Delphi with built-in garbage collection in the near future, I'm addicted to using this short-hand method of easily freeing local temporary objects! :) |
||
|
|
|
|
Smart Pointers work really well if you have Delphi 2009. |
||||||
|
|
|
Here is the API for Boehm Garbage Collector DLL for Delphi. The Delphi API is written by Barry Kelly, who works for CodeGear writing the compiler now. |
||
|
|
|
|
If you use Delphi for .Net / Delphi Prism you get Garbage Collection which takes care of all the freeing. |
||
|
|
