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?
|
1
|
Hi, What are the key differences between an abstract class and an interface?
|
||||||||||||||
|
|
|
Two main differences:
A few others:
|
||||
|
|
|
|
||
|
|
|
|
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/ |
||
|
|