Polymorphism in Java: Concepts, Types, Characterisitics & Examples
Updated on Jul 08, 2024 | 8 min read | 6.4k views
Share:
For working professionals
For fresh graduates
More
Updated on Jul 08, 2024 | 8 min read | 6.4k views
Share:
Table of Contents
Javascript is one of the most popular and widely used Object-Oriented Programming languages, along with C#, PHP, Python, C++, etc. It enables users to exhibit and address real-life concepts through programming since everything is represented as an object. The features of Java as a programming language offer several avenues to simplify software development by making the codes more dynamic and easing maintenance.
In this article, we’ll explore Java as an Object Oriented Programming language and understand the concepts of inheritance, abstraction, polymorphism, and data encapsulation. We’ll also look into the types of polymorphism in Java, their advantages and disadvantages.
Object-oriented programming (OOP) languages refer to those computer languages that use the concept of real-time ‘objects’ in coding. It aims at implementing worldly entities such as inheritance, polymorphism, loops, data abstraction, etc., through programming.
There are a few basic concepts of Object-Oriented Programming that programmers need to get familiar with. These conceptual terms are necessary for learning about special and unique features of OOP such as encapsulation, polymorphism, etc.
A ‘class’ represents a set of properties and methods which apply to all the specified ‘objects’ within the class. The objects can be of different types such as integer, array or string, etc. A class is like a prototype defined by the user, using which different ‘objects’ can be created.
An object is the most fundamental unit of OOP languages, representing real data in real life. Objects bear the properties of the class(es) they are invoked in.
A method is a set of statements involving different functions that are put together to perform a specific task. It returns the output after completing the instructions as defined by the user. It can also carry out tasks that deliver no output. Methods allow programmers to reuse the codes without retyping them. Java requires all the methods to belong to a class, unlike the languages like C++, C, or Python.
There are four primary principles of Object-Oriented programming – Java exhibits all of these properties:
Data Abstraction is a property of OOP languages that showcases the necessary details while keeping the other irrelevant details of the object from visibility to the user, such as the implementation code. Only the essential and relevant details are displayed by this feature, which helps developers quickly make appropriate changes to a class’s functionality.
Data encapsulation refers to the wrapping of data within units. This property of OOP languages protects the encapsulated data from other functions and methods. It binds together the code and specified methods to perform operations in singular units, thus preventing them from being manipulated or accessed by outside methods. This is also known as Data Hiding.
Inheritance is another important feature of OOP languages that allows a class to inherit properties from other classes. It works upon the concept of reusability of codes, thereby reducing the need to retype class features repeatedly. The class that inherits from another class is known as the subclass, and the class being inherited is known as the superclass.
Polymorphism allows an object to take many forms and perform similar tasks or exhibit similar behaviors in different methods.
Polymorphism allows a single task to be performed in various ways. It is a property that helps identify and differentiate between similar code entities, hence enhancing the efficiency of the OOP languages.
In Java, polymorphism is exhibited by declaring objects as separate entities. In this manner, the same action can be performed in multiple ways. Polymorphism is activated along with inheritance, enabling the objects to carry out different tasks using the inherited properties of different classes. Differences in the designation of methods or objects distinguish two entities.
Also Read: Polymorphism In OOPS
Learn Software Development Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs or Masters Programs to fast-track your career.
The implicit conversion of data types to prevent type errors during compilation time is coercion. It does not include explicit data type conversions but follows only the hierarchy of conversion that Java allows. For example, if an operand is afloat and the operator is an integer, the resultant will be afloat.
An object or variable that can hold values of various types during execution time is known as a polymorphic variable or parameter. It dictates that while declaring a class, the same variable names can hold different data types, and the same method names can hold different parameters and return types.
Operator overloading uses an operator symbol as required by the user. Java supports Internal Operator Overloading. It is also an example of static polymorphism.
In Java, polymorphism can be invoked using:
Method overloading is the process of creating multiple objects or methods bearing the same name and belonging to the same class. It functions within a class.
Method overriding is how a subclass constitutes the same methods as declared in the superclass. It functions across classes. If the subclass contains the same methods already present in the superclass, then the function in the subclass is overridden.
Subtype polymorphism depends upon Upcasting and Late Binding.
No operator is involved in this because the subtype itself is a member of the supertype. For example, if a class is named colors, its subtypes can be red, blue, orange, green, etc. Subtype polymorphism includes the subtypes to exhibit the properties of the supertype. However, the access to individual properties of each subtype is lost.
In Java, runtime polymorphism is also known as the Dynamic Method Dispatch or Dynamic Binding. It is achieved through Method overriding – calling an overridden method to provide dynamically resolved at runtime. It can be achieved through functions and not objects.
Here’s an example of runtime polymorphism in Java:
class Car{
void run(){System.out.println(“driving”);}
}
class Volkswagen extends Car{
void run(){System.out.println(“Driving safely with 90km”);}
public static void main(String args[]){
Car c = new Volkswagen();//upcasting
b.run();
}
}
Output:
Driving safely with 90km
Compile-time polymorphism is achieved by method overloading. It is the process in which the call for an overloaded method is carried out and resolved during compile time. It is also known as static polymorphism. Java is flexible enough to allow the user to use methods or objects having the same names as long as its declarations and signature properties remain different.
Here’s an example of compile-time polymorphism in Java:
class SimpleCalc
{
int add(int x, int y)
{
return x+y;
}
int add(int x, int y, int z)
{
return x+y+z;
}
}
public class Demo
{
public static void main(String args[])
{
SimpleCalc obj = new SimpleCalc();
System.out.println(obj.add(20, 30));
System.out.println(obj.add(40, 30, 20));
}
}
Output:
50
90
Polymorphism enables the writing of methods that can constitute different types of entities bearing the same name. Polymorphism is essential in Java because of its various usage benefits and the scope it provides for making the code dynamic:
Polymorphism can be confusing to use and implement. It reduces the readability of codes, hence posing threats of multiple bugs and errors. It also creates issues with performing functions as required.
There is one classic problem to look out for: The Fragile Base Class problem. It refers to improper assembling and coding of an inherited class that results in methods showing unpredictable outcomes.
The fragile nature of inheritance can lead to dysfunctional and broken codes despite all other criteria remaining fulfilled. This basic architectural issue is regarded as the Fragile Base Class problem. Learn more about how Java exhibits OOP concepts by joining upGrad’s Executive PG Programme in Software Development – Specialisation in Full Stack Development. Get mentored by industry experts and build practical knowledge by engaging in hands-on, collaborative projects with peers.
Book your seat today!
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
India’s #1 Tech University
Executive PG Certification in AI-Powered Full Stack Development
77%
seats filled
Top Resources