Inheritance has two parts:
- A derived class can regard public or protected methods or fields of its parents as though they are its own.
- A derived-type object may be substituted for a base-type object in most contexts where the latter is requested.
A class which implements an interface receives only the latter benefit, but a class which inherits from an abstract class achieves both. On the other hand, with that benefit comes a restriction: because it's only possible for a class to regard one other class's methods and fields as its own, it's only possible for a class to inherit from one abstract class. By contrast, a class can implement (and thus be substitutable for) any number of interfaces.
Don't concern yourself with the combinatorial explosion of abstract classes. Suppose some vehicles can Steer (e.g. CompactCar), others can AttachFollower (e.g. a RailwayLocomotive), and some can do both (e.g. PickupTruck). It should be possible for a PickupTruck to satisfy code needing a vehicle that can Steer, as well as code needing a vehicle that can AttachFollower. If Steer and AttachFollower were both abstract classes, however, there would be no way to declare PickupTruck so one instance could perform both functions. The best one could do would be to define a 'SteerableAndHitchableabstract class which inerits fromSteerableand includes aTrailerHitchmember of typeAttachable`, but that sort of thing is icky even with just two abilities. Adding more abilities in type-safe manner will not only require an exploding number of classes; it will require an expanding number of properties for each class.