+ 1
What happens when we create a object of the abstract class??
Abstract class that has a pure virtual function
3 Answers
+ 3
you can't istantiate an abstract class. that's the point of it being abstract
+ 3
Michael's answer.
Plus, it will turn your computer into a supermassive black hole, sucking the entire Milky Way galaxy into its wrath.
+ 1
We can't create an object of abstract class. Abstract class needs to be inherited to implement it.