Inheritance is a way of extending class. The new class (child class) builds logic on the top of the parent class (super class).
Here's an example:
Output:
Basically the child class can add, extend, rewrite or use the inherited logic from the parent.
For this example:
doorsCount
(line 32
)line 41
)line 57
)representation
method (line 50
)getInsuranceCost
(line 35
)getMake
(line 17
)getModel
(line 22
)