Private/protected inheritance - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T06:20:35Z http://stackoverflow.com/feeds/question/374399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/374399/private-protected-inheritance 5 Private/protected inheritance Gal Goldman http://stackoverflow.com/users/46418 2008-12-17T12:29:42Z 2009-01-11T15:57:10Z <p>In C++, I can't think of a case in which I would like to inherit private/protected from a base class:</p> <pre><code>class Base; class Derived1 : private Base; class Derived2 : protected Base; </code></pre> <p>Is it really useful?</p> http://stackoverflow.com/questions/374399/private-protected-inheritance/374414#374414 14 Answer by Johannes Schaub - litb for Private/protected inheritance Johannes Schaub - litb http://stackoverflow.com/users/34509 2008-12-17T12:36:30Z 2008-12-17T12:36:30Z <p>Private can be useful in quite a few circumstances. Just one of them are policies:</p> <p><a href="http://stackoverflow.com/questions/356294/is-partial-class-template-specialization-the-answer-to-this-design-problem#356576">http://stackoverflow.com/questions/356294/is-partial-class-template-specialization-the-answer-to-this-design-problem#356576</a>.</p> <p>Another occasion where it is useful is to forbid copying and assigning:</p> <pre><code>struct noncopyable { private: noncopyable(noncopyable const&amp;); noncopyable &amp; operator=(noncopyable const&amp;); }; classs my_noncopyable_type : noncopyable { // ... }; </code></pre> <p>Because we don't want that the user has a pointer of type <code>noncopyable*</code> to our object, we derive privately. That counts not only for noncopyable, but many many other such classes too (policies being the most common). </p> http://stackoverflow.com/questions/374399/private-protected-inheritance/374423#374423 6 Answer by Luc Touraille for Private/protected inheritance Luc Touraille http://stackoverflow.com/users/20984 2008-12-17T12:40:08Z 2008-12-18T09:02:09Z <p>It is useful when you want to have access to some members of the base class, but without exposing them in your class interface. Private inheritance can also be seen as some kind of composition: the <a href="http://www.parashift.com/c++-faq-lite/private-inheritance.html" rel="nofollow">C++ faq-lite</a> gives the following example to illustrate this statement</p> <pre><code>class Engine { public: Engine(int numCylinders); void start(); // Starts this Engine }; class Car { public: Car() : e_(8) { } // Initializes this Car with 8 cylinders void start() { e_.start(); } // Start this Car by starting its Engine private: Engine e_; // Car has-a Engine }; </code></pre> <p>To obtain the same semantic, you could also write the car Class as follow:</p> <pre><code>class Car : private Engine { // Car has-a Engine public: Car() : Engine(8) { } // Initializes this Car with 8 cylinders using Engine::start; // Start this Car by starting its Engine }; </code></pre> <p>However, this way of doing has several disadvantages:</p> <ul> <li>your intent is much less clear</li> <li>it can lead to abusive multiple inheritance</li> <li>it breaks the encapsulation of the Engine class since you can access its protected members</li> <li>you're allowed to override Engine virtual methods, which is something you don't want if your aim is a simple composition</li> </ul> http://stackoverflow.com/questions/374399/private-protected-inheritance/374665#374665 6 Answer by Greg Rogers for Private/protected inheritance Greg Rogers http://stackoverflow.com/users/5963 2008-12-17T14:21:14Z 2008-12-17T14:21:14Z <p>Public inheritance models IS-A.<br /> Non-public inheritance models IS-IMPLEMENTED-IN-TERMS-OF.<br /> Containment models HAS-A, which is equivalent to IS-IMPLEMENTED-IN-TERMS-OF.</p> <p><a href="http://www.gotw.ca/publications/mill06.htm" rel="nofollow">Sutter on the topic</a>. He explains when you'd choose non-public inheritance over containment for implementation details.</p> http://stackoverflow.com/questions/374399/private-protected-inheritance/375035#375035 0 Answer by Nemanja Trifunovic for Private/protected inheritance Nemanja Trifunovic http://stackoverflow.com/users/8899 2008-12-17T16:01:34Z 2008-12-17T16:01:34Z <p>For instance, when you want to reuse the implementation, but not the interface of a class AND override its virtual functions.</p> http://stackoverflow.com/questions/374399/private-protected-inheritance/375046#375046 0 Answer by Daemin for Private/protected inheritance Daemin http://stackoverflow.com/users/3719 2008-12-17T16:03:51Z 2008-12-17T16:03:51Z <p>I've used both private and protected inheritence at one point or other. </p> <p>Private inheritence is useful when you want something to have the behaviour of the base class, and then be able to override that functionality, but you don't want the whole world to be aware of it and use it. You can still use the interface of a privately derived class by having a function return that interface. It's also useful when you can have things register themselves to listen for callbacks as they can register themselves using the private interface.</p> <p>Protected inheritence is especially useful when you have a base class that derives useful functionality from another class but you only want its derived classes to be able to use it.</p> http://stackoverflow.com/questions/374399/private-protected-inheritance/375069#375069 0 Answer by Eduardo León for Private/protected inheritance Eduardo León http://stackoverflow.com/users/46571 2008-12-17T16:08:19Z 2008-12-17T16:08:19Z <p>I once implemented these data structures as classes:</p> <ul> <li>Linked list</li> <li>Generic array (abstract)</li> <li>Simple array (inherits from generic array)</li> <li>Big array (inherits from generic array)</li> </ul> <p>The big array's interface would make it look like an array, however, it was actually a linked list of fixed-size simple arrays. So I declared it like this:</p> <pre><code>template &lt;typename T&gt; class CBigArray : public IArray, private CLnkList { // ... </code></pre> http://stackoverflow.com/questions/374399/private-protected-inheritance/378068#378068 0 Answer by Arkadiy for Private/protected inheritance Arkadiy http://stackoverflow.com/users/3458 2008-12-18T14:50:13Z 2008-12-18T14:50:13Z <p>Private inheritance is mostly used for wrong reason. People use it to IS-IMPLEMENTED-IN-TERMS-OF, as indicated in an earlier answer, but in my experience it's always more clean to keep a copy rather than inherit from class. Another earlier answer, the one about CBigArray, provides a perfect example of this anti-pattern.</p> <p>I realize that there may be cases when has-a does not work due to over-zealous use of "protected", but it's better to fix the broken class than to break a new class.</p>