vote up 2 vote down star

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!

flag

It's not a very desccriptive title, is it? – Ruben Steins Oct 15 at 9:17
@Ruben any edits are welcome. – JL Oct 15 at 9:17
2  
how about "what's an abstract class called?" (just kidding). – Peter Oct 15 at 9:20
@JL I don't have enough rep to edit I'm afraid... – Ruben Steins Oct 15 at 9:21

4 Answers

vote up 13 vote down check

Abstract class.

link|flag
Thank you very much! – JL Oct 15 at 9:17
vote up 3 vote down

I call such a class an abstract base class.

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

It can also be called a pure virtual class if it's C++

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.