Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I use interface method instead of delegate? How? I found searching that interface method is faster than using delegates. I would appreciate a simple code snippet.

share|improve this question
4  
perhaps start accepting a few more answers... – Mitch Wheat Jan 6 '10 at 10:02
What are you talking about ? The semantics of an interface & delegate are quite different, so you whether you use A or B, depends on the situation. – Frederik Gheysels Jan 6 '10 at 10:04
@Frederik: Comments with that level of abrasiveness are not welcome here. SO is a more professional place for people of all ranges of technical knowledge and ability to get help. @Samir: I agree with Mitch you've asked 25 questions its time to accept some of them. – AnthonyWJones Jan 6 '10 at 10:07
@Anthony: I don't see why 'WTF' would be 'abrasive' or harm the 'professional' level of SO. But, in order to keep the comment-police happy, i've editted my comment. – Frederik Gheysels Jan 6 '10 at 10:09
Adding some context to the problem would be nice. What is the concrete problem that you're trying to optimize ? Or is this a general question ? – Gishu Jan 6 '10 at 10:14

2 Answers

In theory, it's possible to accomplish everything done by delegates with interfaces (Java has no delegates, for instance) containing a single method. However, it makes the code more verbose and adds little benefit. Then again, it's possible to do everything without classes and possibly do it faster. That doesn't mean you should avoid using classes. Calling a delegate method might be marginally slower than calling an interface method. You shouldn't care about the micro-optimization. Use whatever fits your specific need.

share|improve this answer

The biggest advantage of using delegates instead of interfaces is that while a class can only provide one implementation for any given interface, it can create delegates for any number of different methods. For example, suppose rather than exposing a Click event, Button exposed a ClickRecipient property of type IButtonClickHandler, with one method "ButtonClick". A form with two buttons which should have different handlers would have to define a separate class to handle at least one of them, since the form itself would only be able to have one implementation of ButtonClick. By contrast, a Button event accepts a delegate for an EventHandler, and a form can create delegates for any number of EventHandler methods.

Note that using generics and "marker types", one could mitigate this problem significantly, by having a Button(Of T) have a ClickRecipientProperty of type IButtonClickHandler(Of T); a form could thus have a Button(Of FooButton) and a Button(Of BarButton) and provide different implementations for their interfaces. One could also have a ButtonConverter(Of T,U) wrapper class, which would implement IButtonClickHandler(Of T) and invoke IButtonClickHandler(Of U).ButtonClick.

Interfaces are good if the usage pattern will 99% of the time match what the interface is designed for (the remaining 1% of the time, one can create an intermediate wrapper class).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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