Inheritance
Suppose that you want define a class for all Ford cars.
All Ford cars do have the inherent characteristics of a general car described in the class car. They also have special characteristics of their own. So how to reuse general class car?
Inherit the general characteristics.
class FordCar : car // meaning it inherits from class car
{ //special characteristics…};