Saved Bookmarks
| 1. |
What Is An Abstract Class? |
|
Answer» A class that cannot be instantiated. A concept in C++ known as PURE virtual method. A class that must be inherited and have the METHODS over-ridden. Essentially, it is a BLUEPRINT for a class without any implementation. A class that cannot be instantiated. A concept in C++ known as pure virtual method. A class that must be inherited and have the methods over-ridden. Essentially, it is a blueprint for a class without any implementation. |
|