Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was recently asked in an interview about object layout with virtual functions and multiple inheritance involved.
I explained it in context of how it is implemented without multiple inheritance involved (i.e. how the compiler generated the virtual table, insert a secret pointer to the virtual table in each object and so on).
It seemed to me that there was something missing in my explanation.
So here are questions (see example below)

  1. What is the exact memory layout of the object of class C.
  2. Virtual tables entries for class C.
  3. Sizes (as returned by sizeof) of object of classes A, B and C. (8, 8, 16 ?? )
  4. What if virtual inheritance is used. Surely the sizes and virtual table entries should be affected ?

Example code:

class A {  
  public:   
    virtual int funA();     
  private:  
    int a;  
};

class B {  
  public:  
    virtual int funB();  
  private:  
    int b;  
};  

class C : public A, public B {  
  private:  
    int c;  
};

Thanks!

share|improve this question
I've been asked this type of question before as well. I've always wondered whether you actually really need to know this type of thing to be able to understand and use C++. I.e. is there some aspect of the language where the semantics depends on the object layout? It seemed to me that there isn't and this stuff is only relevant to platform-specific aggresive optimising. – jon-hanson Aug 24 '09 at 8:46
Please note that if you place code immediately after a list in SO, it won't be formatted correctly. You need to put some plain text between the two. – anon Aug 24 '09 at 8:47
@Jon I've been using C++ for over 20 years (nearly 5 of them spent teaching it) and I have never needed to know this sort of thing, except to answer the occasional pedantic student. Certainly, in day to day programming, it is completely unimportant. – anon Aug 24 '09 at 8:49
I think it's useful when debugging. If you understand object layout with multiple inheritance, then you understand when and how a pointer value will be modified by a static_cast. – Steve Jessop Aug 24 '09 at 10:18

2 Answers

up vote 7 down vote accepted

The memory layout and the vtable layout depend on your compiler. Using my gcc for instance, they look like this:

sizeof(int) == 4
sizeof(A) == 8
sizeof(B) == 8
sizeof(C) == 20

Note that sizeof(int) and the space needed for the vtable pointer can also vary from compiler to compiler and platform to platform. The reason why sizeof(C) == 20 and not 16 is that gcc gives it 8 bytes for the A subobject, 8 bytes for the B subobject and 4 bytes for its member int c.

Vtable for C
C::_ZTV1C: 6u entries
0     (int (*)(...))0
4     (int (*)(...))(& _ZTI1C)
8     A::funA
12    (int (*)(...))-0x00000000000000008
16    (int (*)(...))(& _ZTI1C)
20    B::funB

Class C
   size=20 align=4
   base size=20 base align=4
C (0x40bd5e00) 0
    vptr=((& C::_ZTV1C) + 8u)
  A (0x40bd6080) 0
      primary-for C (0x40bd5e00)
  B (0x40bd60c0) 8
      vptr=((& C::_ZTV1C) + 20u)

Using virtual inheritance

class C : public virtual A, public virtual B

the layout changes to

Vtable for C
C::_ZTV1C: 12u entries
0     16u
4     8u
8     (int (*)(...))0
12    (int (*)(...))(& _ZTI1C)
16    0u
20    (int (*)(...))-0x00000000000000008
24    (int (*)(...))(& _ZTI1C)
28    A::funA
32    0u
36    (int (*)(...))-0x00000000000000010
40    (int (*)(...))(& _ZTI1C)
44    B::funB

VTT for C
C::_ZTT1C: 3u entries
0     ((& C::_ZTV1C) + 16u)
4     ((& C::_ZTV1C) + 28u)
8     ((& C::_ZTV1C) + 44u)

Class C
   size=24 align=4
   base size=8 base align=4
C (0x40bd5e00) 0
    vptridx=0u vptr=((& C::_ZTV1C) + 16u)
  A (0x40bd6080) 8 virtual
      vptridx=4u vbaseoffset=-0x0000000000000000c vptr=((& C::_ZTV1C) + 28u)
  B (0x40bd60c0) 16 virtual
      vptridx=8u vbaseoffset=-0x00000000000000010 vptr=((& C::_ZTV1C) + 44u)

Using gcc, you can add -fdump-class-hierarchy to obtain this information.

share|improve this answer
Well explained. Thanks. "The reason why sizeof(C) == 20 and not 16 is that gcc gives it 8 bytes for the A subobject, 8 bytes for the B subobject and 4 bytes for its member int c." What about virtual table pointer within object of C? – Ankur Aug 24 '09 at 12:50
The compiler can "recycle" the A-subobject's vtable pointer save 4 bytes per instance this way. – Tobias Aug 24 '09 at 13:02

1 thing to expect with multiple inheritance is that your pointer can change when casting to a (typically not first) subclass. Something you should be aware of while debugging and answering interview questions.

share|improve this answer
1  
I think the article at the following link elaborates your point. Right? phpcompiler.org/articles/virtualinheritance.html – Ankur Aug 24 '09 at 14:31
Yes, it is the part that shows upcasting. – stefaanv Aug 24 '09 at 15:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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