show/hide this revision's text 2 added 2465 characters in body

I use crude rule of thumb:

In the 'normal' cases a simple question is enough to find out if we need inheritance or aggregation.

  • If A The new class isa B, then use more or less as the original class. Use inheritance. The new class is now a subclass of the original class.
  • If A the new class must have the original class. Use aggregation. The new class has Bnow the original class as a member.
  • However, then there is a big gray area. So we need several other tricks.

  • If we have used inheritance (or we plan to use aggregationit) but we only use part of the interface, or we are forced to override a lot of functionality to keep the correlation logical.
  • Of course this is not Then we have a catch big nasty smell that indicates that we had to use Aggregation.

  • If we have used aggregation (or we plan to use it) but we find out we need to copy almost all strategy and there are exceptionsof the functionality.

    Problem is Then we have a smell that points in the direction of inheritanceis easy.You say A

  • To cut it short. We should use aggregation if part of the interface is a subclass not used or has to be changed to avoid an illogical situation. We only need to use inheritance, if we need almost all of Bthe functionality without major changes. And when in doubt, and you get use Aggregation.

    An other possibility for, the case that we have an class that needs part of the functionality of B for freethe original class, is to split the original class in a root class and a sub class. And let the new class inherit from the root class. But sometimes you smell should take care with this, not to create an illogical separation.

    Lets add an example. We have a class 'Dog' with methods: 'Eat', 'Walk', 'Bark', 'Play'.

    class Dog  Eat;  Walk;  Bark;  Play;

    We now need a class 'Cat', that B needs 'Eat', 'Walk', 'Purr', and 'Play'. So first try to extend it from a Dog.

    class Cat is too muchDog  Purr; 

    Looks, alright, but wait. It This cat can Bark (Cat lovers will kill me for that). And a barking cat violates the principles of the universe. So we need to override the Bark method so that it does nothing.

    class Cat is Dog  Purr;   Bark = null;

    Ok, this works, but it smells bad. So lets try an aggregation:

    class Cat  has too Dog;  Eat = Dog.Eat;  Walk = Dog.Walk;  Play = Dog.Play;  Purr;

    Ok, this is nice. This cat does not bark anymore, not even silent. But still it has an internal dog that wants out. So lets try solution number three:

    class Pet  Eat;  Walk;  Play;class Dog is Pet  Bark;class Cat is Pet  Purr;

    This is much cleaner. No internal dogs. And cats and dogs are at the same level. We can even introduce other pets to extend the model. Unless it is a fish, or illogical functionalitysomething that does not walk. In that case , you should use aggregationwe again need to refactor. But that is something for an other time.

    show/hide this revision's text 1

    It's not a matter of which is the best, but of when to use what.

    I use crude rule of thumb:

    • If A is a B, then use inheritance.
    • If A has B, then use aggregation.

    Of course this is not a catch all strategy and there are exceptions.

    Problem is that inheritance is easy. You say A is a subclass of B, and you get the functionality of B for free. But sometimes you smell that B is too much. It has too much, or illogical functionality. In that case, you should use aggregation.