0
An abstract class is which has at least one pure virtual function (like 'int foo() = 0'). Objects can't be made of abstract classes but other classes can inherit from abstracts though they MUST define their own version of the pure virtual functions. Concrete classes must be the regular classes you use or those which don't have virtual functions though not sure about either.
25th Dec 2016, 4:22 PM
Norbivar
Norbivar - avatar