Assignments/Article By Jakub Lisowski

Polymorphism and Inheritance in Java

Student Assignment

Polymorphism and Inheritance in Java

Published on June 12, 2022

Inheritance

It allows for one class (child class) to inherit the fields and methods of another class (parent class). For instance, we might want a child class Dog to inherit traits from a more general parent class Animal. When defining a child class in Java, we use the keyword extends to inherit from a parent class.

Inheritance provides the following benefits:

  • Code reusability: Inherited members can be used in the subclass without reimplementation.
  • Method overriding: Subclasses can provide their implementation of inherited methods, allowing for specialisation.
  • Polymorphism: Inheritance enables the use of polymorphism

Example below:

Polymorphism

It allows a child class to share the information and behaviour of its parent class while also incorporating its own functionality. This allows for the benefits of simplified syntax and reduced cognitive overload for developers.

Example below(continuation of a previous screenshot):

In Java, there are two types of polymorphism:

  • Static Polymorphism (compile-time polymorphism): This happens when a class has different methods with the same name but different parameters. The compiler decides which method to use based on the arguments provided. Examples include method overloading and constructors with different parameter lists.
  • Dynamic Polymorphism (runtime polymorphism): This occurs when a superclass reference variable is used to refer to a subclass object. The method to be executed is determined at runtime based on the actual type of the object. Dynamic polymorphism is achieved through method overriding, where a subclass provides its implementation of a method defined in the superclass.

Student Assignment

The views expressed in this document are those of the author and do not necessarily reflect the position of the London School of Emerging Technology. View the detailed policy Disclaimer for Student and Personal Websites

Our Latest Blog

What is GPT Understanding Generative Pre-trained Transformers Mayur Ramgir

What is GPT? Understanding Generative Pre-trained Transformers

In the world of artificial intelligence (AI), a family of models known as GPT has...
Read More
How to Become an AI-Powered DevOps or Cloud Engineer in 2025

How to Become an AI-Powered DevOps or Cloud Engineer in 2025

The technology landscape is rapidly evolving, and the fusion of artificial intelligence with DevOps and...
Read More
How AWS Services Empower Modern AI and ML Workflows

How AWS Services Empower Modern AI and ML Workflows

In today’s data-driven world, artificial intelligence (AI) and machine learning (ML) are at the forefront...
Read More