Base Class and Derived Class
In this lesson, we'll be learning about how a base class attributes are available to the derived classes and how to define base and a derived class.
We'll cover the following...
In the last lesson, we have seen that Vehicle
class attributes are shared by the other two classes(Car
and Ship
).
Vehicle as a Base Class
We can consider the Vehicle
class as a base
class as it has common attributes.
Derived Classes
Cars and Ships are considered as derived
...