Skip to main content
Engineering LibreTexts

4.5: Types of Inheritance in C++

  • Page ID
    34662
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Single Inheritance: In single inheritance, a class is allowed to inherit from only one class. i.e. one sub class is inherited by one base class only.

    A derived class B that inherits only from one base class A

    Syntax:

    class subclass_name : access_mode base_class 
    { 
       //body of subclass 
    };
     
    // C++ program to      explain 
    // Single inheritance 
    #include <iostream>       
    using namespace std;
    
    // base class 
    class Vehicle 
    { 
          public: 
          Vehicle() 
          { 
             cout << "This is a Vehicle" << endl; 
          } 
    };
    
    // sub class derived from the base classes 
    // although this class does NOTHING
    class Car: public Vehicle
    {   
       public:
       Car()
       {
           cout << "This is a Car" << endl;
       }
    
    };
    
    // main function 
    int main() 
    { 
        // creating object of sub class will 
        // invoke the constructor of base classes 
        Car obj; 
        return 0; 
    } 

    Output - notice that the parent class is initialized first, then the child class - which inherits from the parent class.

    This is a Vehicle
    This is a Car
    

    by-sa.png
    Contributed by Harsh Agarwal
    Geeks for Geeks


    This page titled 4.5: Types of Inheritance in C++ is shared under a CC BY-SA license and was authored, remixed, and/or curated by Patrick McClanahan.

    • Was this article helpful?