Have some .net assembly, calling it in delphi through COM.
var
intf: ITest;
...
intf:= CreateComObject(CLASS_TEST) as ITest;
...
//here comes some stuff
...
Must i do something to destruct it to free memory. Or not?
|
feedback
|
|
You should better release the memory with
When you don't need it any more. Better with a If | |||||||||||||
feedback
|
|
COM objects are reference-counted, and they get automatically destroyed when the reference count reaches zero. The compiler will automatically add calls to | ||||
|
feedback
|
|
All COM interfaces must implement
Every time you take a reference to a COM object it is your responsibility to call The canonical implementation of The Delphi implementation of interfaces manages the calls to
The compiler also arranges for What this means is that you need to take no special action whatsoever to ensure that your COM objects will be destroyed. They will naturally be destroyed when the last reference to the object leaves scope. If however, you do wish to destroy an object ahead of time, then you simply assign | |||||
feedback
|
|
The object is released automatically. However, if you explicitly want to release the reference that the | |||
|
feedback
|