C++ Inheritance - Tutorialspoint
C++ Inheritance - Tutorialspoint
C++ Inheritance - Tutorialspoint
C++ Inheritance
Where access-specifier is one of public, protected, or private, and base-class is the name of a
previously defined class. If the access-specifier is not used, then it is private by default.
Consider a base class Shape and its derived class Rectangle as follows −
Live Demo
#include <iostream>
// Base class
class Shape {
public:
void setWidth(int w) {
width = w;
}
void setHeight(int h) {
height = h;
}
https://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm 1/5
25/01/2021 C++ Inheritance - Tutorialspoint
protected:
int width;
int height;
};
// Derived class
class Rectangle: public Shape {
public:
int getArea() {
return (width * height);
}
};
int main(void) {
Rectangle Rect;
Rect.setWidth(5);
Rect.setHeight(7);
return 0;
}
When the above code is compiled and executed, it produces the following result −
Total area: 35
A derived class can access all the non-private members of its base class. Thus base-class
members that should not be accessible to the member functions of derived classes should be
declared private in the base class.
We can summarize the different access types according to - who can access them in the following
way −
https://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm 2/5
25/01/2021 C++ Inheritance - Tutorialspoint
A derived class inherits all base class methods with the following exceptions −
Constructors, destructors and copy constructors of the base class.
Overloaded operators of the base class.
The friend functions of the base class.
Type of Inheritance
When deriving a class from a base class, the base class may be inherited through public,
protected or private inheritance. The type of inheritance is specified by the access-specifier as
explained above.
We hardly use protected or private inheritance, but public inheritance is commonly used. While
using different type of inheritance, following rules are applied −
Public Inheritance − When deriving a class from a public base class, public members of
the base class become public members of the derived class and protected members of
the base class become protected members of the derived class. A base class's private
members are never accessible directly from a derived class, but can be accessed through
calls to the public and protected members of the base class.
Protected Inheritance − When deriving from a protected base class, public and
protected members of the base class become protected members of the derived class.
Private Inheritance − When deriving from a private base class, public and protected
members of the base class become private members of the derived class.
Multiple Inheritance
A C++ class can inherit members from more than one class and here is the extended syntax −
Where access is one of public, protected, or private and would be given for every base class and
they will be separated by comma as shown above. Let us try the following example −
Live Demo
#include <iostream>
https://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm 3/5
25/01/2021 C++ Inheritance - Tutorialspoint
void setHeight(int h) {
height = h;
}
protected:
int width;
int height;
};
// Derived class
class Rectangle: public Shape, public PaintCost {
public:
int getArea() {
return (width * height);
}
};
int main(void) {
Rectangle Rect;
int area;
Rect.setWidth(5);
Rect.setHeight(7);
area = Rect.getArea();
return 0;
}
When the above code is compiled and executed, it produces the following result −
https://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm 4/5
25/01/2021 C++ Inheritance - Tutorialspoint
Total area: 35
Total paint cost: $2450
https://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm 5/5