This is in fact an interview question, I can't figure out the answer. Anyone knows about this? You can talk about any difference, for example, the data that are push into stack.
See Question&Answers more detail:osThis is in fact an interview question, I can't figure out the answer. Anyone knows about this? You can talk about any difference, for example, the data that are push into stack.
See Question&Answers more detail:osThough virtualism/dynamic dispatch is strictly implementation defined, most(read all known) compilers implement it by using vptr
and vtable
.
Having said that, the difference between calling a non virtual function and virtual function is:
Non-virtual functions are resolved statically
at Compile-time
, While Virtual functions are resolved dynamically
at Run-time
.
In order to achieve this flexibility of being able to decide which function to call at run-time, there is an little overhead in case of virtual functions.
An additional fetch
call that needs to be performed and it is the overhead/price you pay for using dynamic dispatch.
In case of non-virtual function the sequence of calls is:
fetch-call
The compiler needs to fetch
address of the function and then call
it.
While in case of virtual functions the sequence is:
fetch-fetch-call
The compiler needs to fetch
the vptr
from the this
, then fetch
the address of the function from the vptr
and then call
the function.
This is just a simplified explanation the actual sequence maybe far more complex than this but this is what you really need to know, One does not really need to know the implementation nitty gritty's.
Good Read: