1 Abstract Base Classes. An ABC is a class that contains one or more pure virtual member functions . Such a class is not concrete and cannot be instantiated using the new operator. Instead, it is used as a base class where derived classes provide the implementations of the pure virtual methods.
Read moreWhat is an abstract class in OOP C++?
An abstract class is a class that is designed to be specifically used as a base class . An abstract class contains at least one pure virtual function. You declare a pure virtual function by using a pure specifier ( = 0 ) in the declaration of a virtual member function in the class declaration.
Read more