vote up 2 vote down star

Duplicate

Interface vs Base class


With C#, when to use Interfaces and when to use Abstract Classes, what can be the deciding factor.

flag

59% accept rate
I don't agree that this is an "exact" duplicate. – Dave Van den Eynde Apr 14 at 13:45

closed as exact duplicate by Marc Gravell, Joel Coehoorn, Noldorin, Brann, Harper Shelby Apr 14 at 13:35

6 Answers

vote up 7 vote down check

The advantages of an abstract class are

  • Ability to specify default implementations of methods
  • Added invariant checking to functions
  • Have slightly more control in how the "interface" methods are called
  • Ability to provide behavior related or unrelated to the interface for "free"

Interfaces are merely data passing contracts and do not have these features. However they are typically more flexible as a type can only derived from one class but can implement any number of interfaces.

link|flag
-1? At least add a reason – JaredPar Apr 14 at 13:27
@JaredPar : I guess it's to discourage answering duplicate questions (btw, I'm not the one who downvoted you) – Brann Apr 14 at 13:34
@Brann, I've unfortunately seen that behavior before. Seems like it would make more sense to use the down vote on the OP. It's their responsibility to search for dupes. – JaredPar Apr 14 at 13:37
I'll +1, if memory serves this is what was in the framework design guidelines. Great examples in there too. – Josh Apr 14 at 13:37
vote up 1 vote down

Duplicate:

http://stackoverflow.com/questions/56867/interface-vs-base-class

link|flag
+1. Still valid, in my opinion. – Dave Van den Eynde Apr 14 at 13:24
If you think this is a dup, why have you posted this as a reply? It is more common to vote "dup" and add a comment / edit the OP. – Marc Gravell Apr 14 at 13:28
I'll do that next time. :) – Rik Apr 14 at 13:32
@Rik The question you link to is a language agnostic question while this is C# specific, so while there is a lot of overlap, the answers are not exactly the same. For a good example, see Zifre's answer. – Robert Gowland Apr 14 at 13:32
Does it work differently in any other single inheritance language with interfaces? – Rik Apr 14 at 13:41
show 1 more comment
vote up 1 vote down

The real question is: whether to use interfaces or base classes. This has been covered before.

In C#, an abstract class (one marked with the keyword "abstract") is simply a class from which you cannot instantiate objects. This serves a different purpose than simply making the distinction between base classes and interfaces.

link|flag
vote up 0 vote down

Abstract classes and interfaces are semantically different, although their usage can overlap.

An abstract class is generally used as a building basis for similar classes. Implementation that is common for the classes can be in the abstract class.

An interface is generally used to specify an ability for classes, where the classes doesn't have to be very similar.

link|flag
vote up 1 vote down

Another thing to consider is that, since there is no multiple inheritance, if you want a class to be able to implement/inherit from your interface/abstract class, but inherit from another base class, use an interface.

link|flag
vote up 0 vote down

The best answer I have seen is in this excellent book by Brad Adams and Krzysztof Cwalina

http://www.amazon.com/Framework-Design-Guidelines-Conventions-Development/dp/0321545613

link|flag

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