vote up 1 vote down star
1

Possible Duplicate:
What’s the difference between an interface and an abstract class?

Hi,

What are the key differences between an abstract class and an interface?

flag

43% accept rate
1  
This question has already been asked: stackoverflow.com/questions/761194/… – Matthew Jones Jul 22 at 15:03
isn't it duplicate? – Samuel Carrijo Jul 22 at 15:03
1  
Duplicate: stackoverflow.com/questions/479142/… and stackoverflow.com/questions/681602/… and others... – womp Jul 22 at 15:03
This question is more relative to OOP than C# or other language. – Timothée Martin Jul 22 at 15:06
@Timothee: What makes you say that? Quite a few of the differences I listed are C#-specific. – Jon Skeet Jul 22 at 20:10

closed as exact duplicate by womp, Earwicker, devinb, joe, Noldorin Jul 22 at 15:06

3 Answers

vote up 13 vote down

Two main differences:

  • You can't have any implementation code in an interface; abstract classes allow you to implement some methods and leave others abstract
  • You can only derive from one base class, but you can implement multiple interfaces

A few others:

  • Interfaces in C# 4 allow generic variance (in certain cases); classes don't
  • Members in abstract classes can be non-public; interface members are always public
  • Structs can implement interfaces
link|flag
3  
Downvoter: care to leave a reason? – Jon Skeet Jul 22 at 15:07
vote up 1 vote down
  • If you modify an interface, everything implementing that interface will have to change.
  • An abstract class could have default implementation supplied.
link|flag
vote up 0 vote down

Defining an abstract class that contains only abstract members has essentially the same effect as defining an interface, because you specify that derived classes must implement certain members with specific signatures.

Abstract classes provide additional capabilities,such as, the definition of base functionality in the form of non-abstract members, something that an interface cannot do.

2 things to be noted:- 1) A derived class can implement multiple interfaces, but can inherit from only one class (abstract or not). 2)A class that subclasses an abstract class can still implement one or more interfaces.

http://www.codeproject.com/KB/cs/abstractsvsinterfaces.aspx

http://sadi02.wordpress.com/2008/05/08/what-is-difference-in-an-abstract-class-and-an-interface/

link|flag

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