Tagged Questions
12
votes
4answers
309 views
How C++ virtual inheritance is implemented in compilers?
How the compilers implement the virtual inheritance?
In the following code:
class A {
public:
A(int) {}
};
class B : public virtual A {
public:
B() : A(1) {}
};
class C : public B {
...
12
votes
2answers
479 views
C++ multiple inheritance preventing diamond
Is there a way to define a class Foo in C++
so that
I can inherit from it
I can't "diamond inherit" from it
I.e.
class Cat: public Foo{} // okay
class Dog: public Foo{} // okay
class Weird: ...
11
votes
1answer
261 views
Dominance in virtual inheritance
What are the C++98/C++03 standards' and the C++0x future standard's exact rules for dominance in virtual inheritance?
I'm not asking for just the specific paragraphs, although I'm asking also for ...
11
votes
4answers
657 views
C++ private virtual inheritance problem
In the following code, it seems class C does not have access to A's constructor, which is required because of the virtual inheritance. Yet, the code still compiles and runs. Why does it work?
class A ...
9
votes
3answers
91 views
How to detect and assert virtual inheritance for a specific class?
I have a C++ class that implements reference-counting and I want all users of this class to inherit from this class only virtually so that no object ends up with more than one reference counter.
I'd ...
8
votes
7answers
3k views
final class in c++
class Temp
{
private:
~Temp() {}
friend class Final;
};
class Final : virtual public Temp
{
public:
void fun()
{
cout<<"In base";
}
};
class Derived : public ...
6
votes
4answers
297 views
is virtual inheritance from pure abstract classes (interfaces) necessary
Why is it that in the code below the compiler complains that PureAbstractBase is an ambiguous base class of MultiplyInheritedClass? I realize I have two copies of the PureAbstractBase in ...
4
votes
4answers
143 views
Virtual Inheritance Confusion
I'm reading about inheritance and I have a major issue that I haven't been able to solve for hours:
Given a class Bar is a class with virtual functions,
class Bar
{
virtual void Cook();
}
What ...
3
votes
4answers
75 views
How to have a derived class use the base implemention to satisfy an interface
I have the following two interfaces, which are not part of an inheritance hierarchy. I then have two concrete classes, one which derives from the other.
class ICar {
public:
virtual void ...
3
votes
3answers
221 views
Virtual Inheritance : Base Ctor not calling in Most Derived Class?
class Base
{
public:
Base(){}
Base(int k):a(k)
{
}
int a;
};
class X:virtual public Base
{
public:
X():Base(10){}
...
2
votes
1answer
79 views
C++ abstract base class constructors/destructors - general correctness
Recently I have dumb as a developer, so I took the plunge, got a C++ book and learning how to do things properly. In my head, I know what I would like to do. I effectively want an Interface that when ...
2
votes
2answers
74 views
Using virtual inheritance on “final” classes in unfinished class heirarchies
Is there any harm or is it considered bad design to preemptively derive virtually classes in an unfinished class hierarchy that are currently "at the bottom" (i.e., the most derived)? Is there a good ...
2
votes
2answers
253 views
Should you write “public virtual” or “virtual public” in virtual inheritance?
Based on http://en.wikipedia.org/wiki/Virtual_inheritance
class Animal
{
...
};
// Two classes virtually inheriting Animal:
class Mammal : public virtual Animal
{
...
};
I also saw books use the ...
1
vote
2answers
45 views
Is there a sane way to simulate virtual inheritance in Django models?
I want to log actions made by users. In most OO languages, I would implement this via a LoggedAction class, having several child classes like LoginActionand LogoutAction. I could then iterate over a ...
1
vote
1answer
36 views
Special name for first non abstract virtual method without code?
This questions comes from another similar question. Sometimes I have to deal with this case.
Do you know if exist an special name in Object Oriented Programming, for a initial method that has been ...
1
vote
7answers
371 views
Static Virtual functions in c++
I have a base class and a derived one and I want to change base functions while keeping them static as they should be passed to other functions as static.
How can I do that?
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 ...
0
votes
1answer
229 views
about virtual base class and virtual inheritance in C++ [closed]
Possible Duplicate:
gcc c++ virtual inheritance problem
Hi All,
I am reading Effective C++ by scott myers books. It was mentioned about virtual base class and virtual inheritance as ...