i looked in SO and couldn't find a good description regarding the difference between public, private and protected C++ inheritance. All the questions were assuming an specific case.
|
|
To answer that question, I'd like to describe member's accesors first on my own words. If you already know this, goto next. There are three accesors that I'm aware of: public, protected and private. Let:
By "been aware", I mean "acknowledge the existence of, thus, it can be access it".
|
|
i find this to be the better answer but i dunno to accept it since has less votes. – user106599 May 13 '09 at 21:08 |
||
+1 for a good answer. While Doug T.'s answer wasn't wrong, it was a bit vague. This one seems to explain the concept more thoroughly – Josh E May 13 '09 at 21:19 |
|||
|
|||
|
This answer does not explain the implications on implicit conversions from derived to base and the other way around. This is explained in Johannes' answer. – Björn Pollex Jan 10 '12 at 20:07 |
||
|
@Shikiyo: You should accept the answer that YOU like and disregard the opinions of others. Then collectively after everyone has voiced their independent opinions, we can determine consensus. If you follow the "lemming philosophy" we never get the benefit of YOUR opinion. – Verax Nov 16 '12 at 1:12 |
IMPORTANT NOTE: Classes B, C and D all contain the variables x, y and z. It is just question of access. About usage of protected and private inheritance you could read here. |
|||||||||||
|
|
It has to do with how the public members of the base class are exposed from the derived class.
As litb points out, public inheritance is traditional inheritance that you'll see in most programming languages. That is it models an "IS-A" relationship. Private inheritance, something AFAIK peculiar to C++, is an "IMPLEMENTED IN TERMS OF" relationship. That is you want to use the public interface in the derived class, but don't want the user of the derived class to have access to that interface. Many argue that in this case you should aggregate the base class, that is instead of having the base class as a private base, make in a member of derived in order to reuse base class's functionality. |
|||||||||
|
|
Limiting the visibility of inheritance will make code not being able to see that some class inherits another class: Implicit conversions from the derived to the base won't work, and Only members/friends of a class can see private inheritance, and only members/friends and derived classes can see protected inheritance. public inheritance
protected inheritance
private inheritance
public member
protected member
private member
Note that C-style casts purposely allows casting a derived class to a protected or private base class in a defined and safe manner and to cast into the other direction too. This should be avoided at all costs, because it can make code dependent on implementation details - but if necessary, you can make use of this technique. |
|||||||
|
Inheritance type : Object inherited as:
|
||||
|
|
If you inherit publicly from another class, everybody knows you are inheriting and you can be used polymorphically by anyone through a base class pointer. If you inherit protectedly only your children classes will be able to use you polymorphically. If you inherit privately only yourself will be able to execute parent class methods. Which basically symbolizes the knowledge the rest of the classes have about your relationship with your parent class |
|||
|
|
|
Public inheritance models an IS-A relationship. With
every Private inheritance models an IS-IMPLEMENTED-USING relationship (or whatever that's called). With
a
This I don't think anyone knows what |
||||
|
|
|
Protected data members can be accessed by any classes that inherit from your class. Private data members, however, cannot. Let's say we have the following:
From within your extension to this class, referencing |
|||||
|
|
It's essentially the access protection of the public and protected members of the base class in the derived class. With public inheritance, the derived class can see public and protected members of the base. With private inheritance, it can't. With protected, the derived class and any classes derived from that can see them. |
|||
|
|
|
Some insights can be found here. This site will be your friend in case of any other C++ related question. |
|||
|
|
|
In addition to all these, let me add that in 95% of the cases the public inheritance is what best suits to your application. |
|||
|
|
|
private: the private members of a base class can only be accessed by members of that base class . public: the public members of a base class can be accessed by members of that base class, members of its derived class as well as the members which are outside the base class and derived class. protected: the protected members of a base class can be accessed by members of base class as well as members of its derived class. in short : private: base protected: base + derived public: base + derived + any other member |
|||
|
|
|
Summary:
When inheriting, you can (in some languages) change the protection type of a data member in certain direction, e.g. from protected to public. |
|||
|
|
|
See these codes to understand features of c++ about inheritance... I put the result at the end... Hope it helps.
|
||||
|
|
protected by Bo Persson Mar 30 '12 at 18:21
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.