Can you give me a concrete example when is preferable to use private inheritance over composition? Personally, I will use composition over private inheritance, but there might be the case that using private inheritance is the best solution for a particular problem. Reading the C++ faq, gives you an example on using private inheritance, but I seems easier to use composition + strategy pattern or even public inheritance than private inheritance.

link|improve this question

3  
There are a million dups for this question. Perform a search. And, as you state, you already found an example. Just because you didn't like it doesn't make it not an example... – Lightness Races in Orbit Jun 9 '11 at 18:15
I think 'never' is the right answer... – Santiago V. Jun 9 '11 at 18:17
1  
Thanks, I did a search, but nothing showed up using the title strings, but I will rather use the template recursive pattern for this. – Armando Jun 9 '11 at 18:20
feedback

2 Answers

up vote 4 down vote accepted

private inheritance is typically used to represent "implemented-in-terms-of". The main use I have seen is for mixins using private multiple inheritance to build up a child object with the proper functionality from the various mixin parents. This can also be done with composition (which I slightly prefer) but the inheritance method DOES allow you to use using to expose some parent methods publicly, and allows for a slightly more convenient notation when using the mixin methods.

link|improve this answer
You nailed it! I can see why private inheritance might lead to an easier solution... thanks! – Armando Jun 9 '11 at 18:25
feedback

Scott Meyers in "Effective C++" item 42 says

"Only inheritance gives access to protected members, and only inheritance allows for virtual functions to be redefined. Because virtual functions and protected members exist, private inheritance is sometimes the only practical way to express an is-implemented-in-terms-of relationship between classes."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.