Introduction

Hello again! In this part of our C++ Class Basics Revision, we delve into inheritance in object-oriented programming (OOP) with C++. Inheritance allows us to share code across classes, thus improving readability and efficiency.

In this lesson, we'll clarify attribute and method inheritance in C++ using practical examples. Our lesson's blueprint includes defining inheritance, examining attribute inheritance, exploring method inheritance, and decoding the base class constructor's usage in C++. Ready? Let's get started!

Defining Inheritance

Inheritance involves creating a derived class that inherits details from a base class. In C++, we often find scenarios where classes share common attributes or methods, which makes inheritance highly useful.

Here's an example featuring a base class named Vehicle and a derived class named Car:

#include <iostream>
#include <string>

// Define the base class 'Vehicle'
class Vehicle {
public:
    // Constructor to initialize 'color' and 'brand' attributes
    Vehicle(std::string color, std::string brand) : color(color), brand(brand) {}

protected:
    std::string color; // color of the vehicle
    std::string brand; // brand of the vehicle
};

// Define the derived class 'Car'
class Car : public Vehicle { // Car inherits from Vehicle
public:
    // Constructor to initialize 'color', 'brand', and 'doors'
    Car(std::string color, std::string brand, int doors) : Vehicle(color, brand), doors(doors) {}

private:
    int doors; // number of doors specific to 'Car'
};

Inheritance types, such as Single, Multiple, Multilevel, and Hierarchical, in C++, cater to different needs. However, our focus in this lesson is primarily on single inheritance, where one base class feeds one derived class.

Attribute Inheritance

Attribute inheritance allows a derived class to inherit the attributes of a base class.

Consider this example featuring a base class named Artist, and a derived class named Musician:

#include <iostream>
#include <string>

// Define the base class 'Artist'
class Artist {
public:
    // Constructor to initialize 'name' attribute
    Artist(std::string name) : name(name) {}

protected:
    std::string name; // name of the artist
};

// Define the derived class 'Musician'
class Musician : public Artist { // Musician inherits from Artist
public:
    // Constructor to initialize 'name' and 'instrument' attributes
    Musician(std::string name, std::string instrument) : Artist(name), instrument(instrument) {}

    // Method to display the musician's details
    void display() {
        std::cout << "Name: " << name << "\nInstrument: " << instrument << std::endl;
    }

private:
    std::string instrument; // instrument played by the musician
};

int main() {
    // Create an instance of 'Musician' and display its details
    Musician john("John Lennon", "Guitar");
    john.display();
    return 0;
}

The Musician class inherits the name attribute from the Artist class and also has its own unique attribute, instrument.

Method Inheritance

Similar to attributes, method or function inheritance allows a derived class to inherit the methods of a base class.

In the example below, the Car class can invoke the start method from the Vehicle class:

#include <iostream>
#include <string>

// Define the base class 'Vehicle'
class Vehicle {
public:
    // Constructor to initialize 'brand' attribute
    Vehicle(std::string brand) : brand(brand) {}

    // Method to simulate starting the vehicle
    void start() {
        std::cout << "The " << brand << " is starting." << std::endl;
    }

private:
    std::string brand; // brand of the vehicle
};

// Define the derived class 'Car'
class Car : public Vehicle { // Car inherits from Vehicle
public:
    // Constructor to initialize 'brand' attribute
    Car(std::string brand) : Vehicle(brand) {}
};

int main() {
    // Create an instance of 'Car' and call the inherited 'start' method
    Car my_car("BMW");
    my_car.start();
    return 0;
}
Understanding the Base Class Constructor

In C++, the base class constructor is explicitly called within the derived class constructor using an initializer list. This approach allows a derived class to extend or utilize the functionality of a base class without directly modifying it.

For instance, when overriding a method to add or alter its behavior, calling the base class method enables integrating its functionality with new enhancements:

#include <iostream>
#include <string>

// Define the base class 'Vehicle'
class Vehicle {
public:
    // Virtual method to start the vehicle (can be overridden)
    virtual std::string start() {
        return "Vehicle is starting...";
    }
};

// Define the derived class 'Car'
class Car : public Vehicle { // Car inherits from Vehicle
public:
    // Override the start method to add custom behavior
    std::string start() override {
        return Vehicle::start() + " Beep! Beep!";
    }
};

int main() {
    // Create an instance of 'Car' and call the overridden 'start' method
    Car my_car;
    std::cout << my_car.start() << std::endl;
    return 0;
}

Similarly, during initialization, the derived class constructor calls the base class constructor, ensuring that the base class is properly initialized, thereby allowing the derived class to add its specific attributes seamlessly:

#include <iostream>
#include <string>

// Define the base class 'ParentClass'
class ParentClass {
public:
    // Constructor to initialize 'value' attribute
    ParentClass(std::string value) : value(value) {}

protected:
    std::string value; // some value to be inherited
};

// Define the derived class 'ChildClass'
class ChildClass : public ParentClass { // ChildClass inherits from ParentClass
public:
    // Constructor to initialize 'value' and 'additional_value'
    ChildClass(std::string value, std::string additional_value) 
      : ParentClass(value), additional_value(additional_value) {}

    // Method to display the values
    void display() {
        std::cout << "Value: " << value << "\nAdditional Value: " << additional_value << std::endl;
    }

private:
    std::string additional_value; // additional value specific to 'ChildClass'
};

int main() {
    // Create an instance of 'ChildClass' and display its values
    ChildClass child_class("value", "additional_value");
    child_class.display();
    return 0;
}

In these ways, calling the base class constructor facilitates a coherent and modular approach to inheritance by allowing derived classes to build upon or adapt the functionality of their base classes efficiently and cleanly.

Lesson Summary

We've successfully explored attribute and method inheritance in C++ and practiced using several examples. Mastering these concepts in real-life programming can enhance both efficiency and readability. Remember, practice is essential for proficiency!

On that note, are you ready for some practice exercises? They will solidify your understanding and prepare you for more complex programming tasks. Programming is all about experimenting, learning, and problem-solving. Enjoy the journey!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal