+ 1
What is an abstract class?
Please elaborate..
3 Answers
+ 10
https://en.m.wikibooks.org/wiki/C%2B%2B_Programming/Classes
check out here
+ 4
Abstract class have at least one method that is declared but haven't an implementation. Therefore an abstract class can't be instantiatedâ. Is used to be inherited from another class.
+ 3
Is a class that you can't make objects of