As Herb Sutter and Andrei Alexandrescu explain in their book C++ Coding Standards (item 34), inheritance is one of the tightest relationships which C++ allows you to use between two classes - It is second only to a friend relationship between classes.
According to the S.O.L.I.D principles of OO, a successful design should aim for loose coupling between classes - this infers keeping dependencies to a minimum; which in turn implies that inheritance is a tool which should be used with care.
Of course, dependencies generally need to exist somewhere, so a reasonable compromise can be inheriting from classes with no implementation at all (Analogous to so-called interfaces in languages such as C# and Java). e.g.
class IDriveable
{
public:
virtual void GoForward() = 0;
virtual void GoBackward() = 0;
};
class Car : public IDriveable { /* etc. */ };
class Bus : public IDriveable { /* etc. */ };
class Train : public IDriveable { /* etc. */ };
With this approach, if you have elements of code which are reused between several Drivable classes, you would typically use composition or some other weaker relationship to eliminate repeated code.
e.g. perhaps you want to reuse code to TurnLeft for a Bus and a Car but not a Train where turning left is illogical, so TurnLeft could end up in a separate class which is a member-of Bus and Car.
- In addition, any functionality which might need to know about all of the vaguely-related classes would be external to the class heirarchy, only aware of the interface/base rather than the nitty-gritty implementation details.
The end result may be a small amount of extra code for composition, but often a less complex design, and typically one which is easier to manage. There aren't any hard-fast rules for designing code like this since it depends entirely on the unique problems which you're trying to solve.
There are other ways to reuse code without tight coupling too - templates let you implicitly define interfaces without empty classes containing pure virtual functions (templates provide additional type safety - which is a very good thing, but they are syntactically a little more complex);
And there are ways which you can use std::function and lambdas in order to reuse code in a more functional style - again there's usually no tight dependencies involved when passing around function objects.