Hello,
what is the size of object of Class child in following case?
class Parent
{
};
class Child : virtual public Parent
{
};
thanx cire for reply.
yes you are right.
size become 4 byte(depend on compiler).
right?
yes its because Child class contain one vptr. because its virtual base class inheritance.
So, what that vptr stored?
means whose address it store?
address of VTable for Parent class?
Hi cire,
waiting for reply...