Tag: Virtual functions
-
C++Virtual Functions in C++
A virtual function is a member function declared in a base class that is re-defined (overridden) by a derived class….
October 26, 2022
-
C++Pure Virtual Functions and Abstract Classes
What are Pure Virtual Functions? A pure virtual function is a virtual function in C++ that does not require any…
October 27, 2022
-
C++Virtual Destructors in C++
What is a Virtual Destructor? Deleting a derived class object with a non-virtual destructor using a pointer of the base…
October 28, 2022