Could someone please explain when would I want to use delegation instead of inheritance?
When you want to "copy"/Expose the base class' API, you use inheritance. When you only want to "copy" functionality, use delegation.
One example of this: You want to create a Stack out of a List. Stack only has pop, push and peek. You shouldn't use inheritance given that you don't want push_back, push_front, removeAt, et al.-kind of functionality in a Stack.
They have nothing to do with each other. Delegation is a behavior. Inheritance is a model technique.
Inheritance is for modeling "is-a". A computer "is-a" electronic system.
Delegation is how methods provide results. Sometimes one object will delegate work to another object. Delegation can be via any relationship -- you can delegate to a superclass, to a member of a composite or aggregate, or any relationship.
You may use delegation to multiple internal class instances to simplify their functionality into a common grouping. If your language doesn't implement multiple inheritance for instance you may inherit from one of the bases and wrap the other, delegating the functionality you want to expose to the underlying implementation. Inheritance also ties your class into the hierarchy of classes you are inheriting from where as with delegation you may keep your place in your own hierarchy and delegate calls to another.
Assume your class is called B and the derived/delegated to class is called A then
Here are some xamples when inheritance or delegation are being used:
If
- you want to express relationship (is-a) then you want to use inheritance.
- you want to be able to pass your class to an existing API expecting A's then you need to use inheritance.
- you want to enhance A, but A is final and can no further be subclassed then you need to use composition and delegation.
I won't expand on the answers given, however a book I've found really useful with these sorts of OO design issues is Arthur Riel's excellent book Object-Oriented Design Heuristics.
http://www.davegardner.me.uk/reading/oo-design-heuristics/
http://www.amazon.co.uk/Object-oriented-Design-Heuristics-Arthur-Riel/dp/020163385X