Inheritance: Sub Class: The Class That Inherits Properties From Another Class Is Called Sub Class or
Inheritance: Sub Class: The Class That Inherits Properties From Another Class Is Called Sub Class or
Inheritance: Sub Class: The Class That Inherits Properties From Another Class Is Called Sub Class or
The capability of a class to derive properties and characteristics from another class is
called Inheritance. Inheritance is one of the most important feature of Object Oriented
Programming.
Sub Class: The class that inherits properties from another class is called Sub class or
Derived Class.
Super Class:The class whose properties are inherited by sub class is called Base
Class or Super class.
Consider a group of vehicles. You need to create classes for Bus, Car and Truck. The
methods fuelAmount(), capacity(), applyBrakes() will be same for all of the three
classes. If we create these classes avoiding inheritance then we have to write all of
these functions in each of the three classes as shown in below figure:
You can clearly see that above process results in duplication of same code 3 times.
This increases the chances of error and data redundancy. To avoid this type of
situation, inheritance is used. If we create a class Vehicle and write these three
functions in it and inherit the rest of the classes from the vehicle class, then we can
simply avoid the duplication of data and increase re-usability. Look at the below diagram
in which the three classes are inherited from vehicle class:
Using inheritance, we have to write the functions only one time instead of three times as
we have inherited rest of the three classes from base class(Vehicle).
For creating a sub-class which is inherited from the base class we have to follow the
below syntax.
Syntax:
1. Public mode: If we derive a sub class from a public base class. Then the public
member of the base class will become public in the derived class and protected
members of the base class will become protected in derived class.
2. Protected mode: If we derive a sub class from a Protected base class. Then
both public member and protected members of the base class will become
protected in derived class.
3. Private mode: If we derive a sub class from a Private base class. Then both
public member and protected members of the base class will become Private in
derived class.
Note : The private members in the base class cannot be directly accessed in the
derived class, while protected members can be directly accessed. For example,
Classes B, C and D all contain the variables x, y and z in below example. It is just
question of access.
The below table summarizes the above three modes and shows the access specifier of
the members of base class in the sub class when derived in public, protected and
private modes:
Types of Inheritance in C++
Syntax:
2. class subclass_name : access_mode base_class
3. {
4. //body of subclass
5. };
Syntax:
7. class subclass_name : access_mode base_class1, access_mode
base_class2, ....
8. {
9. //body of subclass
10. };
Here, the number of base classes will be separated by a comma (‘, ‘) and access
mode for every base class must be specified.
11. Multilevel Inheritance: In this type of inheritance, a derived class is created from
another derived class.