My question is with reference to this question which explains how virtual functions work in case of object slicing which end up calling base class virtual function and Wikip
"Virtual table for class B
"? Virtual table for class B
is not involved in oA.func()
call at all. Object oA
has type A
, which means that its virtual table is that of class A
.
Moreover, most compilers will optimize the oA.func()
call so that it won't use any virtual tables at all. Since the type of oA
is known at compile time, the oA.func()
call can be immediately directed to A::func
without using any virtual tables.