Skip to main content
Engineering LibreTexts

5.4: Difference between Inheritance and Polymorphism

  • Page ID
    37782
  • \( \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}}\)

    Inheritance:
    Inheritance is one in which a new class is created that inherits the properties of the already exist class. It supports the concept of code reusability and reduces the length of the code in object-oriented programming.

    Types of Inheritance are:

    1. Single inheritance
    2. Multi-level inheritance
    3. Multiple inheritance
    4. Hybrid inheritance
    5. Hierarchical inheritance

    Polymorphism:
    Polymorphism is that in which we can perform a task in multiple forms or ways. It is applied to the functions or methods. Polymorphism allows the object to decide which form of the function to implement at compile-time as well as run-time.

    Types of Polymorphism are:

    1. Compile-time polymorphism (Method overloading)
    2. Run-time polymorphism (Method Overriding)

     Hopefully that makes it clear as to what the differences are. Here is a comparison table.

    Difference between Inheritance and Polymorphism:

      INHERITANCE POLYMORPHISM
    1. Inheritance is one in which a new class is created (derived class) that inherits the features from the already existing class(Base class). Whereas polymorphism is that which can be defined in multiple forms.
    2. It is basically applied to classes. Whereas it is basically applied to functions or methods.
    3. Inheritance supports the concept of reusability and reduces code length in object-oriented programming. Polymorphism allows the object to decide which form of the function to implement at compile-time (overloading) as well as run-time (overriding).
    4. Inheritance can be single, hybrid, multiple, hierarchical and multilevel inheritance. Whereas it can be compiled-time polymorphism (overload) as well as run-time polymorphism (overriding).
    5. It is used in pattern designing. While it is also used in pattern designing.

    Adapted from:
    "Difference between Inheritance and Polymorphism" by MKS075Geeks for Geeks is licensed under CC BY-SA 4.0 


    5.4: Difference between Inheritance and Polymorphism is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?