Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lets say Michael Jackson and I are objects of same class HumanBeing. But he had a better implementation of the behaviour 'dance' than me .

How do I do this programatically , so that 2 objects of same class can have different implementation?

class HumanBeing
{
public :
    HumanBeing(){};
    void dance() { }
};


HumanBeing Me , MJ;

Me.dance();  ///bad dance
MJ.dance();  //good dance
share|improve this question

2 Answers

You're describing a scenario where you might employ a Strategy Pattern, perhaps in your case having multiple implementations of a "dance" strategy which can be attached to a person at runtime.

HumanBeing Me(new BadDancer);
HumanBeing MJ(new GoodDancer);
share|improve this answer
5  
I can see it now 'private Dancer tinaTurner;' – akf Aug 1 '09 at 21:05
you made me groan :) – Paul Dixon Aug 1 '09 at 21:08

You should read Dealing with roles by Martin Fowler and make the right decision. Each solution has pro and cons.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.