vote up 1 vote down star

When do you use each inheritance?

class Base{};

class Derived: protected Base{};
class Derived2: public Base{};

My case:

I have class called Snapshot which only contains GetXXX methods. It is a light-weight classed used to store current state of the Value class. I also use it for recovery, keeping instances of this class long after Value class instance are gone. A Manager class, processes instances of the Snapshot class. Let me show you the code:

class Snapshot
{
        public:
            Snapshot (const Snapshot * snap)
            {
              _x=snap->_x;   
              _y=snap->_y;  
              _z=snap->_z;  
            }
            Snapshot (){_x=_y=_z=0;}
            int GetX(){return _x;}
            int GetY(){return _y;}
            int GetZ(){return _z;}
            ~virtual Snapshot(){} 

         protected: 
             int _x,_y,_z;               
};

class Value:public Snapshot 
{

 /*Very heavy class with a lot of components used to calculate _x, _y, _z*/


};


class Manager
{
       public:
         void Process( const Snapshot * snap)
         {

         }  
};

How do you feel about this design? What are the alternatives?

Thanks

Solutions and issues

  • Solution: I would create makeSnapshot function which would return Snapshot object by given Value object.

  • Issues:

    • major issue: I sent snapshots at very frequently (every second, even less), hence I don't want to incur the construction and destruction cost minor issue:

    • semi-major issue I will have to make Value a friend of Snapshot, as I don't want
      to introduce setters.

flag
"...the construction and destruction cost minor..." how are you going to create snapshots without construct them? Are going to pass Values instead of Snapshot? – Mykola Golubyev Mar 13 at 15:05
I find your description not sufficient, as the example presented and your explanations in the comments seem a bit convoluted. – unknown (google) Mar 13 at 15:10
@Mykola exactly: I pass Value and Snapshot interchangeably. @unknown( google) what don't understand about the design? I will provide more details if anything specific is unclear. – Sasha Mar 13 at 15:37

4 Answers

vote up 0 vote down check

Generally speaking I would use public inheritance, if I want to implement a specific interface, e.g. if my class is to be accessed thrugh a specific contract. Protected inheritance could be used, if you just want to reuse the functionality implemented in the parent.

I would make Snapshot a pure virtual class, e.g. just an interface, and Value would implement the getXYZ methods. E.g. you probably don't need the _x,_y,_z members in Snapshot.

link|flag
in recovery I use instances of Snapshot class... – Sasha Mar 13 at 15:06
vote up 0 vote down

Colour me Luddite, but in over 20 years of C++ programming I have never used protected or private inheritance, and have never seen an example of their use which could not have been done better using some other language feature (usually containment).

link|flag
I've seen private on numerous occasions, but protected reeks of being somewhat pathological ;) – unknown (google) Mar 13 at 15:22
Same here, never seen protected inheritance, though my experience falls short of 20 years :)) – Sasha Mar 13 at 15:38
It's rare, but I can think of a few reasons for private inheritance. Protected, though, I have never seen. – rlbond Mar 13 at 16:07
I found a use for protected inheritance only once so far in my career. It involved propogating an interface to derived classes while hiding it from public users. Private inheritance is much more common. – Brian Neal Mar 13 at 19:19
vote up 2 vote down

I would create makeSnapshot function which would return Snapshot object by given Value object.

Do you really need Value to be a Snapshot?

Also you can consider GOF design pattern "Memento".

link|flag
I though about it, and it introduces two issues: major issue: I sent snapshots at very frequently (every second, even less), hence I don't want to incur the construction and destruction cost minor issue: I will have to make Value a friend of snapshot, as I dont want to introduce setters. thx – Sasha Mar 13 at 14:57
So where Memento doesn't meat your requirements? – Mykola Golubyev Mar 13 at 15:01
read it again... – Sasha Mar 13 at 15:05
vote up 1 vote down

As for the question about the private and protected inheritance, the pretty thorough explanation can be found here:

Main issue is the semantic - whether something IS-A something, or whether something is IS-IMPLEMENTED-IN-TERMS-OF something.

link|flag
this is one is both: it is something and it uses something :) – Sasha Mar 13 at 14:55

Your Answer

Get an OpenID
or

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