The private-inheritance tag has no wiki summary.
11
votes
3answers
193 views
Pointer to a member function in an inaccessible base
The compilation of the next example :
class A
{
public:
void foo()
{
}
};
class B : private A
{
public:
using A::foo;
};
int main()
{
typedef void (B::*mf)();
mf func ...
11
votes
1answer
131 views
Private inheritance: name lookup problem
I have the following code example that doesn't compile:
#include <stdio.h>
namespace my
{
class base1
{ // line 6
};
class base2: private base1
{
};
class ...
6
votes
3answers
94 views
C++ compiler error involving private inheritance
Could someone please explain the following compiler error to me:
struct B
{
};
template <typename T>
struct A : private T
{
};
struct C : public A<B>
{ ...
5
votes
3answers
214 views
Function member pointer with private base
The following code yields a compile time error:
'base::print' : cannot access private member declared in class 'base_der'
However, I have made the member public in the derived class. Why doesn't ...
3
votes
1answer
65 views
Private inheritance vs containment
While explaining when private inheritance must be used, instead of containment, the author of this article says the following :
"We need to construct the used object before, or destroy it after, ...
3
votes
4answers
108 views
What is private inheritance, and what issues(s) does it address?
Could someone explain what exactly private/protected inheritance in C++ is for, and what problem(s) it is intended to solve?
class Bar { };
class Foo : private Bar { };
I've already seen this ...
3
votes
2answers
234 views
How to use Private Inheritence aka C++ in C# and Why not it is present in C#
I know that private inheritance is supported in C++ and only public inheritance is supported in C#. I also came across an article which says that private inheritance usually defines a HAS-A ...
2
votes
5answers
93 views
does it make sense to inherit privately from an abstract (pure virtual) class?
suppose this construct
struct InterfaceForFoo
{
virtual void GetItDone() = 0;
};
class APoliticallyCorrectImplementationOfFooRelatedThings : private InterfaceForFoo
{
public:
void ...
2
votes
2answers
337 views
When to use C++ private inheritance over composition?
Can you give me a concrete example when is preferable to use private inheritance over composition? Personally, I will use composition over private inheritance, but there might be the case that using ...
1
vote
2answers
69 views
is it possible to hide an overloaded method while using private inheritence in c++
class Foo
{
public:
int fn()
{
return 1;
}
int fn(int i)
{
return i; //2nd fn()
}
};
class Bar:Foo
{
public :
Foo::fn;
};
int main(int argc, char** argv)
...
1
vote
2answers
81 views
Private Inheritance: How do I make object of the Base Class ( which has got pure virtual methods)?
Consider the following code:
class Base
{
protected:
virtual void methodDefinedInBase() = 0;
}
Class Derived: private Base
{
public:
void someMethod();
protected:
virtual void ...
1
vote
5answers
160 views
Simultaneous private and public inheritance in C++
Suppose a class Y publicly inherits a class X. Is it possible for a class Z to privately inherit Y while publicly inheriting X?
To make this clearer, suppose X defines public methods x1 and x2. Y ...
1
vote
2answers
94 views
Private inheritance and swap
I'm using private inheritance in the implementation of two very related classes. The using Base::X; is very useful and elegant. However, I can't seem to find an elegant solution for reusing the base ...
0
votes
4answers
88 views
Why does private inheritance increase the probability, as compared to composition, that someone will break my code?
The author of this article states that
"Normally you don't want to have access to the internals of too many other classes, and private inheritance gives you some of this extra power (and ...