0
In C++, why we can not create object of abstract class and we can just create only pointer/referance of abstract class?
What is the main reason of not allowing to create object ?
1 ответ
+ 2
I am pretty sure it is because an abstract class only has a pure virtual function, which is nothing, but you can create a pointer/reference because it is the mother class of different classes???
This is just my guess.