What happens to the VPTR if a class is derived from another class with virtual functions but does not override them?

Disable ads (and more) with a premium pass for a one time $4.99 payment

Test your C++ skills with our quiz based on Bruce Eckel's 'Thinking in C++'. Dive into object-oriented programming, advanced topics, and fundamentals. Perfect for learners and experts alike. Assess your knowledge and become a C++ master!

If a class is derived from another class with virtual functions but does not override them, the VPTR will still exist. It will point to the base class's VTABLE because the derived class inherits the virtual functions from the base class. Option A is incorrect because the VPTR is a crucial part of polymorphism and cannot be removed. Option C is incorrect because the VPTR stays the same at runtime. Option D is incorrect because the derived class does not have its own VTABLE, it shares it with the base class.

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy