473,396 Members | 1,861 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Why parent classes' vptrs are stored in derived objects

Hi All,
Consider the following scenario:
class Top { };
class Left: virtual public Top { };
class Right: virtual public Top { };
class Bottom: public Left, public Right {};

Many books propose that object of Bottom contains three vptrs, one for
Left and Bottom, one for Right and one for Top.
Now my question is why the compiler is storing superclasses' vptrs in
derived class object. After all Bottom also has a vptr pointing to its
vtable from which it will call all virtual functions.
Thanks in advance.

Feb 27 '07 #1
4 3608

Ki**********@gmail.com wrote:
Hi All,
Consider the following scenario:
class Top { };
class Left: virtual public Top { };
class Right: virtual public Top { };
class Bottom: public Left, public Right {};

Many books propose that object of Bottom contains three vptrs, one for
Left and Bottom, one for Right and one for Top.
Now my question is why the compiler is storing superclasses' vptrs in
derived class object. After all Bottom also has a vptr pointing to its
vtable from which it will call all virtual functions.
Thanks in advance.
Well as far as you use derived object alone it works fine. But what
happens when you dynamic cast Bottom pointer to either of Left, Right
or Top like:
Bottom * b = new Bottom;
Left * something = <dynamic_cast*>b;
In this case you type casting you should use something as if it is a
original Left object; for that you need to access Left class' vtbl.
Thats why you need to store base classes vptrs in the derived objects.
Hope its clear.

Feb 27 '07 #2
ud************@gmail.com wrote:
Ki**********@gmail.com wrote:
>>Hi All,
Consider the following scenario:
class Top { };
class Left: virtual public Top { };
class Right: virtual public Top { };
class Bottom: public Left, public Right {};

Many books propose that object of Bottom contains three vptrs, one for
Left and Bottom, one for Right and one for Top.
Now my question is why the compiler is storing superclasses' vptrs in
derived class object. After all Bottom also has a vptr pointing to its
vtable from which it will call all virtual functions.
Thanks in advance.


Well as far as you use derived object alone it works fine. But what
happens when you dynamic cast Bottom pointer to either of Left, Right
or Top like:
Bottom * b = new Bottom;
Left * something = <dynamic_cast*>b;
In this case you type casting you should use something as if it is a
original Left object; for that you need to access Left class' vtbl.
Thats why you need to store base classes vptrs in the derived objects.
Hope its clear.
No that's not clear. When calling a method from a Left*, if it points to
a Bottom, then Bottom's virtual functions should be used, not Left's.

--
Ron House ho***@usq.edu.au
http://www.sci.usq.edu.au/staff/house
Mar 1 '07 #3
Yes, you are right Ron. Bit misunderstood the question.
May be this explanation is clear:

class D : public A, public B, public C {.........}

If we dont store the base classes' vptrs in derived objects, that
means you have to club all the virtual functions of all the base
classes (in case of multiple inheritance) into one vtbl that has a
single vptr that will be stored in your object. Now, no problem in
accessing virtual functions of first subobject (like class A in the
above code snippet) whose virtual function pointers are stored in
starting location of vtbl. But what happens in accessing other
subobjects (like classes B and C in the above code snippet) virtual
functions. Their offsets will get disturbed as you have clubbed all
the virtual functions into one vtbl. After all, compiler will access
virtual functions with their offsets only. Now you dont know what will
be get called.

Thats why in case of single or pure multilevel inheritance you dont hv
to store the base classes' vptrs in derived objects.

Now the question: Can not compiler determine these changes in offsets
and adjust virtual functions pointers accordingly? It may, it depends
on the compiler. But most of the compilers adopt this strategy and may
some compilers do this optimization.

Mar 1 '07 #4
ud************@gmail.com wrote:
Yes, you are right Ron. Bit misunderstood the question.
May be this explanation is clear:

class D : public A, public B, public C {.........}

If we dont store the base classes' vptrs in derived objects, that
means you have to club all the virtual functions of all the base
classes (in case of multiple inheritance) into one vtbl that has a
single vptr that will be stored in your object. Now, no problem in
accessing virtual functions of first subobject (like class A in the
above code snippet) whose virtual function pointers are stored in
starting location of vtbl. But what happens in accessing other
subobjects (like classes B and C in the above code snippet) virtual
functions. Their offsets will get disturbed as you have clubbed all
the virtual functions into one vtbl. After all, compiler will access
virtual functions with their offsets only. Now you dont know what will
be get called.

Thats why in case of single or pure multilevel inheritance you dont hv
to store the base classes' vptrs in derived objects.

Now the question: Can not compiler determine these changes in offsets
and adjust virtual functions pointers accordingly? It may, it depends
on the compiler. But most of the compilers adopt this strategy and may
some compilers do this optimization.
Yes, with multiple inheritance, obviously A, B, and C cannot all share
the same starting address as D, so yes, there must be an offset on the
address of the _data_ of the object, when calling superclass functions
(of all but 1); and there must be distinct vtable addresses for all but
1 also. But like you, I cannot think why this cannot be calculated. My
only suggestion is that perhaps it is a performance issue. But even
here, surely all such objects will have the same relationships, so the
extra addresses could be stored in the vtable, I would have thought.

We must be overlooking something (unless the book authors are)!

--
Ron House ho***@usq.edu.au
http://www.sci.usq.edu.au/staff/house
Mar 2 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Suzanne Vogel | last post by:
Hi, I've been trying to write a function to test whether one class is derived from another class. I am given only id's of the two classes. Therefore, direct use of template methods is not an...
9
by: Martin Herbert Dietze | last post by:
Hello, I would like to implement a callback mechanism in which a child class registers some methods with particular signatures which would then be called in a parent class method. In...
4
by: Davey | last post by:
I have a website which has a popup window (this only opens when the user chooses to open it). In the popup window I have a <select> control which lists a selection of "classes". Each class has a...
8
by: Manuel | last post by:
Hi! If I've a vector filled with abstract classes, can I push in it the derived classes too? Even if derived classes have new methods? I've done some experiments, and it seem I can push the...
5
by: Chris Szabo | last post by:
Good afternoon everyone. I'm running into a problem deserializing a stream using the XmlSerializer. A stored procedure returns the following from SQL Server: <Student StudentId="1" Status="1"...
11
by: Darren.Ratcliffe | last post by:
Hi guys Posted what was probably a rather confusing post about this the other day, so I am going to have another go and see if I can make more sense. This sis purely a I've got a base class...
6
by: reandeau | last post by:
I'm building out a OO based app in PHP 5 but I'm getting a little confused on children contructing parents. I have a parent that looks like this: abstract Class State { protected $database;...
17
by: Jess | last post by:
Hello, If I have a class that has virtual but non-pure declarations, like class A{ virtual void f(); }; Then is A still an abstract class? Do I have to have "virtual void f() = 0;"...
2
by: cmonthenet | last post by:
Hello, I searched for an answer to my question and found similar posts, but none that quite addressed the issue I am trying to resolve. Essentially, it seems like I need something like a virtual...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.