Search Results

3
votes

Looking for a better way than virtual inheritance in C++

We had a very similar problem in a project and we solved it by just NOT deriving ImprovedShape from Shape. If you need Shape functionality in ImprovedShape you can dynamic_cast, knowing that your …
5
votes

Calling overridden function from the overriding function

This is perfectly good. In fact, the canonical way of performing some operations is calling the base class method, then do whatever (or the other way around). I am thinking of operator= here. Co …
0
votes

virtual derived class of a non-virtual base class

The missing four bytes are, indeed, the vptr of the object; since class A has no vtable, a pointer to A has no vptr. While it is actually legal deriving a class with virtual methods from an …