In OOP terms what is the name of a class that is always a parent, and the class cannot be used on its own, it can only be used if a class inherits from it.
I don't need code samples, just the technical OOP term for this class, thanks!
|
|
|||||||||||
|
|
|
Abstract class. |
||
|
|
|
I call such a class an abstract base class. |
||
|
|
|
|
A class thats always a parent...not quite sure what you mean by this. I would take a stab and assume you are refering to the Base Class. For a class that can only be inherited from you are thinking of an Abstract class. |
||
|
|
|
|
It can also be called a pure virtual class if it's C++ |
||
|
|