I am a Delphi programmer and trying to get some stuff done with C# here. Does interfaces in C# works in the same way as in Delphi - you don't need to worry in freeing it as it is freed when its out of scope.

link|improve this question

77% accept rate
Ronaldo, are you specifically asking about interface or did you mean references? – Henk Holterman Jun 22 '10 at 21:58
Im asking about interfaces - because of the way Delphi handles it, I am about to build something and keen to use interface but lack the knowledge of what happens behind the scene. – Ronaldo Junior Jun 22 '10 at 22:15
That part should be clear now (-: – Henk Holterman Jun 22 '10 at 22:21
feedback

5 Answers

up vote 7 down vote accepted

Yes, to a programmer they look the same. Use And Forget.

Internally they work different, in .NET an interface is (just another) reference that is sweeped by the Garbage collector.

In Delphi interfaces are a special kind of reference that are reference-counted (a different Meory management technique).

The main .NET/Delphi difference is that in .NET all references (interface, object and array) are garbage Collected.

link|improve this answer
1  
Thanks for the explanation. Would be a valid point to say that if I make my object implement IDisposable and use something like "using (MyClass myobj = new MyClass()){} I could achieve something similar to what Delphi does (out of scope, you're done) rather than wait for the garbage collector? – Ronaldo Junior Jun 22 '10 at 22:20
@Ronaldo: Yes, somewhat. But you should not normally do that. IDisposable is for managing resources (FileHandles), not memory. You cannot control the lifetime of objects, but you don't have to worry about it either. – Henk Holterman Jun 22 '10 at 22:34
feedback

The key difference between Delphi and .NET in this area, relating specifically to interfaces, is the non-deterministic nature of the clean-up.

In Delphi all interface usage follows the COM model. That is, it is reference counted. If the class implements a reference counted lifetime management model, then when the reference count drops to zero the object instance is destroyed AT THAT POINT.

NOTE: Lifetime management is a function of the class implementation. To see this most clearly, a look at the implementation of IUnknown.Release in TInterfacedObject:

function TInterfacedObject._Release: Integer;
begin
  Result := InterlockedDecrement(FRefCount);
  if Result = 0 then
    Destroy;
end;

If the implementation of Release did not call Destroy, then the object would NOT be destroyed when the reference count drops to zero and would still have to be explicitly Free'd through some object reference to the object. This can be used in Delphi to create objects which implement interfaces but which are not subject to automatic, reference counted lifetime management (though you cannot avoid the reference counting code injected by the compiler, i.e. calls to AddRef and Release).

In .NET first of all there is no reference counting per se. The Garbage Collector works in a far more sophisticated fashion, the details of which are not directly relevant to this discussion.

The key difference is that when an object is no longer being used (however that is determined beyond a simple reference count) that is NOT the point at which it is destroyed in .NET.

In fact, it is theoretically possible that unused objects would accumulate in your application until a much, much later point in your process lifetime - especially in compute intensive applications with few idle cycles. In .NET you simply cannot be sure precisely when those unused objects will eventually be free'd.

Some would argue that this is A Good Thing, though it confuses the usual practice of cleaning up resources that are locked or owned by objects when those objects are destroyed, since you typically need to release those locked/owned resources more urgently than is afforded by waiting around for the Garbage Collector. This is where IDisposable comes in in .NET, the details of which are again not directly relevant can may be researched further at your leisure.

link|improve this answer
Thanks for the great explanation - your answer and Henk's one helped me a lot. – Ronaldo Junior Jun 23 '10 at 20:54
feedback

I don't think it is freed when out of scope but when the garbage collection happens (when they are not used anymore)

link|improve this answer
1  
actually correct but hard to decipher: what behaviour is Delphi and what .NET? – Henk Holterman Jun 22 '10 at 22:22
feedback

Everything in c# is garbage collected, so you do not need to free them manually.

But there are significant differences. Delphi interfaces are reference counted, c# interfaces are garbage collected. C# supports multiple interface inheritance.

link|improve this answer
1  
Delphi also supports multiple interface inheritance, no diff there. – Henk Holterman Jun 22 '10 at 21:49
1  
Surely it's true only to say that both C# and Delphi support multiple interface implementations? "Multiple interface inheritance" might suggest that an interface "A" may inherit from multiple interfaces, "B" and "C" which is not possible in either Delphi or C#. Of course, if a class implements multiple interfaces then any derived/descendant classes "inherit" those multiple interfaces, but to my mind that is an incidental side effect of having implementation inheritance and the ability to implement multiple interfaces, and does not constitute a multiple interface inheritance "feature". – Deltics Jun 23 '10 at 0:19
@Deltics, see this for starters: stackoverflow.com/questions/2346210 – Henk Holterman Jun 23 '10 at 7:31
@Deltics: Note that interface IFoo : IBar, IDisposable is OK, but when you reflector it back a class implementing IFoo might show up with the 3 interfaces, unrelated . – Henk Holterman Jun 23 '10 at 7:35
@Henk: Thanks for that link. Seems like pointless syntactic sugar to me... "inheriting" from multiple interfaces is semantically and functionally equivalent to requiring that multiple interfaces be implemented (if one designated "multiple derived" interface is implemented). i.e. it's a useful way of implementing an interface contract, but it's not "inheritance" in the way that it is usually meant in OO, and your reflector observations would seem to confirm that - it's syntactic sugar that "looks like" inheritance, but isn't really. At least, not imho. – Deltics Jun 23 '10 at 20:23
show 3 more comments
feedback

Memory management is handled by the CLR. Garbage collection is an intrinsic service in the CLR.

You do not need to null out variables or fields in order to have the object collected by garbage collection.

You do not need to implement or use IDisposable to clean up memory. The Dispose method does nothing to free managed objects in memory. The Dispose method is should be used to free up "unmanaged" resources including database connections, bitmaps, or any unmanaged structures you may be holding onto.

If you are talking about interfaces as in visual components (Forms, dialogs, etc), this gets a little bit more confusing. In WinForms, I believe that when an interface (visual) is no longer visible, it will be cleaned up and garbage collected. The form will be recreated again when it is needed. In WPF, Windows and Pages are not immediately destroyed. They are cached for the lifetime of the application unless they are specifically cleaned up by the application developer. This improves performance with WPF applications but places an additional burden of having to worry about resources in your application.

Garbage collection is a completely separate topic. The actual freeing of managed objects from physical memory occurs in here and is completely up to the Garbage Collection service and you should not normally have to worry about how this works.

Cheers

link|improve this answer
-1 for the "you do not need to null out ..." phrase. True for variables, dangerously false for fields. – Henk Holterman Jun 22 '10 at 22:01
For the rest this is lacking any Delph perspective. – Henk Holterman Jun 22 '10 at 22:02
When the class goes out of scope, the fields are cleaned up. Why would you need to null out fields? If your class is holding onto unmanaged resources, you need to clean those up in your Dispose method implementation. Nulling out the field doesn't necessarily clean up unmanaged resources. The question was also about memory management in C#. I was missing the explicit link between Delphi interface and C# interface, but didn't feel it detracted from my contribution. – Dave White Jun 22 '10 at 22:08
You may need to null out fields holding references to objects for the objects to become collectable. I see your other interpretation now but that makes no sense - no language makes you clean out var/fields. And interfaces contain neither – Henk Holterman Jun 23 '10 at 7:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.