class base {
public:
    void virtual fn(int i) {
        cout << "base" << endl;
    }
};

class der : public base{
    public:
    void  fn(char i) {
        cout << "der" << endl;
    }
};

int main() {

    base* p = new der;
    char i = 5;
    p->fn(i);
    cout << sizeof(base);
    return 0;
}

Here signature of function fn defined in base class is different from signature of function fn() defined in der class though function name is same. Therefore, function defined in der class hides base class function fn(). So class der version of fn cannot be called by p->fn(i) call; It is fine.

My point is then why sizeof class base or der is 4 if there is no use of VTABLE? What is requirement of VTABLE here?

link|improve this question

64% accept rate
did you ever hear about overloading in C++? – Kamil Klimek Feb 2 at 9:14
@KamilKlimek: Overloading is the act of declaring multiple functions with different signatures. What you probably mean is overriding (which is reimplementing methods in derived classes). – Frerich Raabe Feb 2 at 9:16
for your kind information, these are not overloaded function. – user966379 Feb 2 at 9:16
This code actually has hiding issue: der::fn(char) hides base::fn(int). – Frerich Raabe Feb 2 at 9:17
1  
@KamilKlimek: Overloading is not across classes, the compiler interprets it correctly, this is well defined in the standard. – Als Feb 2 at 9:57
show 3 more comments
feedback

3 Answers

up vote 6 down vote accepted

Note that this is highly implementation dependent & might vary for each compiler.

The requirement for presence of vtable is that the Base class is meant for Inheritance and extension, and a class deriving from it might override the method.

The two classes Base and Derived might reside in different Translation Unit and the compiler while compiling the Base class won't really know if the method will be overidden or not. So, if it finds the keyword virtual it generates the vtable.

link|improve this answer
1  
But in this example, all the code is in the same module and the compiler could know. – Bo Persson Feb 2 at 12:05
feedback

Inheritance is a is-a relationship. der is-a base. base has size 4, der will have at least size 4. vftableptr is a member of base, it will be a member of der.

base has a virtual method, so it will have a pointer to the virtual table, regardless of whether you use it or not.

link|improve this answer
You are missing the point, the Q OP asking is why is size of the Base class 4? and not Why size of the derived class is 4? – Als Feb 2 at 9:19
If none of the derived classes ever override the virtual fucntn – Bo Persson Feb 2 at 9:21
@Als I was confused because it seems pretty straightforward to me. It has a virtual method, why shouldn't it have a pointer to the vtable? I edited my answer to reflect this. – Luchian Grigore Feb 2 at 9:25
@LuchianGrigore: I understand,just to clarify a bit more on the question.The OP says "If the Base class virtual method is not overridden by any derived class(this implies there will not be any dynamic dispatch needed at all), then why does the compiler not optimize and remove the unnecessary overhead of creating a vtable?" – Als Feb 2 at 11:01
@Als ok I see. I can't see a way for the compiler to know whether the base class is extended, be it in the current or a different module... – Luchian Grigore Feb 2 at 11:42
show 2 more comments
feedback

The vtable is usually not only used for virtual functions, but it is also used to identify the class type when you do some dynamic_cast or when the program accesses the type_info for the class.

If the compiler detects that no virtual functions are ever overridden and none of the other features are used, it just could remove the vtable pointer as an optimization.

Obviously the compiler writer hasn't found it worth the trouble of doing this. Probably because it wouldn't be used very often, and because you can do it yourself by removing the virtual from the base class.

link|improve this answer
A virtual b(int), B: public A - no override, C: public B override b(int), D: public C - no override. And how do you except compiler to behave in this case? Where should be vtable and where shouldn't? if I B * instance = new D; ? – Kamil Klimek Feb 2 at 10:40
Also what if it is used as plugin factory? It has no physical way to know, if there will or will not be inherited class that overrides virtual method. – Kamil Klimek Feb 2 at 10:45
If there is an override anywhere, the vtable will have to be there everywhere, because there can only be one version of each class. It is just if (big if!) the compiler can tell for sure it is not needed, that it can be optimized out. – Bo Persson Feb 2 at 11:44
I think Als gave answer, that simply prooves compiler can't tell it for sure – Kamil Klimek Feb 2 at 11:48
feedback

Your Answer

 
or
required, but never shown

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