vote up 117 vote down star
61

When should I use an interface and when should I use a base class?

Should it always be an interface if I don't want to actually define a base implementation of the methods?

If I have a Dog and Cat class. Why would I want to implement IPet instead of PetBase? I can understand having interfaces for ISheds or IBarks (IMakesNoise?), because those can be placed on a pet by pet basis, but I don't understand which to use for a generic Pet.

flag
show 6 more comments

31 Answers

prev 1 2
vote up 0 vote down

I usually write both the Interface and the base Abstract Class. That leads to a much more robustly defined class hierarchy.

It also gives the code more flexibility.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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