class Base
{
      public:
          Base(){}
          Base(int k):a(k) 
          {     
          }
            int a;
};

class X:virtual public Base
{
      public:
            X():Base(10){}
            int x;
};

class Y:virtual public Base
{
      public:
            Y():Base(10){}
            int y;
};

class Z:public X,public Y
{
public:
    Z():X(10){}
};

int main()
{
           Z a;
           cout << a.a;
           return 1;
}

In the above case, for Z():X(10){} Base(int k):a(k) is not calling, but when i change to Z():Base(10){} the Base(int k):a(k) is called. Why ?

Thank you.

link|improve this question

70% accept rate
3  
How can you call X(10) when X only has a default constructor? – Péter Török Mar 10 '10 at 12:51
Possible duplicate: stackoverflow.com/questions/2126522 – Charles Bailey Mar 10 '10 at 12:58
I think you missed constructor X( int ) to make Z():X(10){} possible. – jasonline Mar 10 '10 at 14:14
feedback

3 Answers

up vote 6 down vote accepted

Because you used the virtual keyword - that's exactly what it does.

You have to explicitly initialize Base in the initializer list of Z in order to disambiguate between the initialization in X and the initalization in Y.

link|improve this answer
@Joe, Clean Answer :). Thanks a Lot – mahesh Mar 10 '10 at 14:13
feedback

See this question. The gist is, that when using virtual inheritance you have to call the base class constructor explicitly.

link|improve this answer
feedback

The initializer list in the most derived constructor is used to initialize your base classes. Since class Z inherits from class X and Y which inherits from a common base class, the virtual keyword is used to create only a single subobject for the base class in order to disambiguate when accessing the data member a.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.