Post Made Community Wiki by Community
show/hide this revision's text 2 changed formatting again

Interfaces and base classes represent two different forms of relationships.

*Inheritance*

Inheritance (base classes) represent an is-a"is-a" relationship. E.g. a dog or a cat is-a"is-a" pet. This relationship always represents the (single) *purpose* purpose of the class (in conjunction with the "single responsibility principle"[1]).

*Interfaces*,

Interfaces, on the other hand, represent *additional features* of a class. I'd call it an is"is" relationship, like in "Foo is disposable", hence the IDisposable interface in C#.

[1]: References of the most important principles of software engineering

show/hide this revision's text 1

Interfaces and base classes represent two different forms of relationships.

*Inheritance* (base classes) represent an is-a relationship. E.g. a dog or a cat is-a pet. This relationship always represents the (single) *purpose* of the class (in conjunction with the "single responsibility principle"[1]).

*Interfaces*, on the other hand, represent *additional features* of a class. I'd call it an is relationship, like in "Foo is disposable", hence the IDisposable interface in C#.

[1]: References of the most important principles of software engineering