Answer Posted / ramesh
V-table is specific to class. No matter how many objects
are created for this class, only one virtual table exists.
Each virtual function in the class will have a pointer in
Vtable.
Whenever a code like Base *b = new Derived; is encountered,
during compile time the search will happen in Base class.
Its only during run time the actual objects are invoked and
the fucntion present in derived class will be called.
Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Can a Structure contain a Pointer to itself?
What is boyce codd normal form in c++?
What are arrays c++?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
What is meant by the term name mangling in c++?
Do class declarations end with a semicolon?
How the endl and setw manipulator works?
Can c++ do everything c can?
What is the use of dot in c++?
What is the copy-and-swap idiom?
Write about the role of c++ in the tradeoff of safety vs. Usability?
What is the return value of the insertion operator?
What is the size of a vector?
What is a unnitialised pointer?