It is clear about public and private inheritance, but what about protected? Any example when we really need to use it and it gives us benefit?
|
The base-from-member idiom needs protected inheritance at times. The problem that idiom addresses is the following: you sometimes need to initialize the base class with a member of the derived class, like in
But You solve this with an auxiliary class and private inheritance:
Now If you want
|
||||
|
|
This is Scott Meyers opinion (Effective C++, 3rd Edition) on protected inheritance :). However, this page is interesting: Effective C++: discouraging protected inheritance?. |
||||
|
|
|
A very simple example may be a class that uses a variable (say |
|||||
|
|
Protected is particularly useful to abstract superclasses, written with knowledge of the children in mind. Protected members and methods are available to the children, and can save code replication, without exposing them to the world outside the family of classes being implemented at the time. |
|||||
|
giveŃ‹: Hello from Russia :) – suddnely_me Mar 31 '12 at 22:13valarray,export,vector<bool>or exception specifications. – Kerrek SB Mar 31 '12 at 22:23