47

I have a basic question related to multiple inheritance in C++. If I have a code as shown below:

struct base1 {
   void start() { cout << "Inside base1"; }
};

struct base2 {
   void start() { cout << "Inside base2"; }
};

struct derived : base1, base2 { };

int main() {
  derived a;
  a.start();
}

which gives the following compilation error:

1>c:\mytest.cpp(41): error C2385: ambiguous access of 'start'
1>      could be the 'start' in base 'base1'
1>      or could be the 'start' in base 'base2'

Is there no way to be able to call function start() from a specific base class using a derived class object?

I don't know the use-case right now but.. still!

nonsensickle
  • 4,438
  • 2
  • 34
  • 61
goldenmean
  • 18,376
  • 54
  • 154
  • 211

3 Answers3

96
a.base1::start();

a.base2::start();

or if you want to use one specifically

class derived:public base1,public base2
{
public:
    using base1::start;
};
dascandy
  • 7,184
  • 1
  • 29
  • 50
4

Sure!

a.base1::start();

or

a.base2::start();
Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
2

In addition to the answers above, if we are in the case of NON-VIRTUAL inheritance:

you can:

  1. use static_cast<base1*>(a).start()

or

  1. override start() in derived

Btw - please note the diamond problem that can appear. In this case you might want to use virtual.

user3742309
  • 183
  • 2
  • 12