I am confused about the meaning of access modifiers with respect to inheritance. What is the difference between inheritance involving the private, protected and public keywords?
|
what are Access Specifiers?There are 3 Public - The members declared as Public are accessible from outside the Class through an object of the class. Protected - The members declared as Protected are accessible from outside the class BUT only in a class derived from it. Private - These members are only accessible from within the class. No outside Access is allowed. An Source Code Example:
Inheritance and Access SpecifiersInheritance is C++ can be one of the following types:
Here are the member access rules with respect to each of these:
Public Inheritance:
i.e. No change in the Access of the members. The access rules we discussed before are further then applied to these members. Code Example:
Private Inheritance:
An code Example:
Protected Inheritance:
A Code Example:
Remember the same access rules apply to the classes and members down the inheritance hierarchy. Important points to note:- Access Specification is per-Class not per-Object Note that the access specification C++ work on per-Class basis and not per-object basis. - A Derived class can only access members of its own Base class Consider the following code example:
It gives an compilation error:
Because the derived class can only access members of its own Base Class. Note that the object What is a
|
|
I think you're too kind -- the question shows no effort on the part of questioner, so it's not worth this kind of effort in an answer. However, perhaps it can reused as or in a FAQ answer? – Cheers and hth. - Alf Mar 27 '11 at 10:00 |
||
|
@Alf: Thanks Alf, I just hope the questioner learns through the answer. When i started out I had to learn all by myself and I know its hard to do so just trying to do my best. I did mark it as a FAQ answer but since Sbi removed it seems the answer is not good enough or perhaps it doesn't fit in to the idea behind FAQ. – Alok Save Mar 27 '11 at 10:31 |
||
|
Thanks a lot for the detailed explanation. I am a newbie to C++ and this really helped me to clear some concepts. I am sorry I could not respond earlier. I had to get back home from the library and only this morning I saw your response. I now have a clearer understanding on the access specifiers. Thanks once again. – Sista Mar 27 '11 at 16:36 |
||
The answer is quite good, but I believe that for a FAQ it is still missing as much as it gives: the meaning of friend, relationships with nested/member types, and more importantly a precise definition of what protected means that tackles the common misunderstanding that this should compile: class base { protected: int x; }; struct derived : base { static void f( base& b ) { b.x = 5; } }; – David Rodríguez - dribeas Jun 17 '12 at 12:13 |
|
The explanation from Scott Meyers in Effective C++ might help understand when to use them - public inheritance should model is-a relationship, whereas private inheritance should be used for "is-implemented-in-terms-of" - so you don't have to adhere to the interface of the superclass, you're just reusing the implementation. |
|||
|
|
protected by Alok Save Sep 27 '11 at 18:49
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.
