C++ Inheritance

Taylor Emma
2 Min Read
Disclosure: This website may contain affiliate links, which means I may earn a commission if you click on the link and make a purchase. I only recommend products or services that I personally use and believe will add value to my readers. Your support is appreciated!

One of the most important concepts in object-oriented programming is that of inheritance. Inheritance allows us to define a class in terms of another class which makes it easier to create and maintain an application. This also provides an opportunity to reuse the code functionality and fast implementation time.

When creating a class, instead of writing completely new data members and member functions, the programmer can designate that the new class should inherit the members of an existing class. This existing class is called the base class, and the new class is referred to as the derived class.

A class can be derived from more than one classes, which means it can inherit data and functions from multiple base classes. To define a derived class, we use a class derivation list to specify the base class(es). A class derivation list names one or more base classes and has the form:

class derived-class: access-specifier base-class

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:

#include<iostream>

usingnamespacestd;

// Base class

classShape

{

public:

voidsetWidth(int w)

{

width= w;

}

voidsetHeight(int h)

{

height= h;

}

protected:

int width;

int height;

};

// Derived class

classRectangle:publicShape

{

public:

intgetArea()

{

return(width * height);

}

};

int main(void)

{

RectangleRect;

Rect.setWidth(5);

Rect.setHeight(7);

// Print the area of the object.

cout<<“Total area: “<<Rect.getArea()<<endl;

return0;

}

Share This Article
A senior editor for The Mars that left the company to join the team of SenseCentral as a news editor and content creator. An artist by nature who enjoys video games, guitars, action figures, cooking, painting, drawing and good music.
Leave a review