954,499 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Memory allocation difference between virtual and non virtual class

I have a base class and two derived class. One derived class which inherits base class as virtual and another one as non virtual. I have given below my codin.

// This program uses virtual base classes.
    #include <iostream>
    using namespace std;
    class base {
    public:
    int i;
    };
    // derived inherits base as not virtual
    class derived : public base {
    public:
    int x;
    };
    // derived1 inherits base as virtual.
    class derived1 : virtual public base {
    public:
    int j;
    };
    int main()
    {
    base b;
    cout<<endl<<sizeof(b)<<" ";
    derived obn;
    cout<<sizeof(obn)<<" ";
    derived1 ob1;
    cout<<sizeof(ob1);
    
    return 0;
    }


After running this program i get the below output

4
8
12 > "Why the virtual derived class having 12 bytes? "

infantheartlyje
Light Poster
29 posts since Jul 2008
Reputation Points: 10
Solved Threads: 0
 

Given the size difference, I'd say that your compiler implements virtual bases using a virtual base pointer (much like the better known virtual table pointer for polymorphism). Extra bookkeeping is required to maintain the shared instance, because the compiler can't simply stack the instances as in non-virtual inheritance.

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: