Java - Polymorphism
Java - Polymorphism
Java - Polymorphism
Polymorphism is the ability of an object to take on many forms. The most common use of
polymorphism in OOP occurs when a parent class reference is used to refer to a child class
object.
Any Java object that can pass more than one IS-A test is considered to be polymorphic. In Java,
all Java objects are polymorphic since any object will pass the IS-A test for their own type and
for the class Object.
It is important to know that the only possible way to access an object is through a reference
variable. A reference variable can be of only one type. Once declared, the type of a reference
variable cannot be changed.
The reference variable can be reassigned to other objects provided that it is not declared final.
The type of the reference variable would determine the methods that it can invoke on the object.
A reference variable can refer to any object of its declared type or any subtype of its declared
type. A reference variable can be declared as a class or interface type.
Example
Now, the Deer class is considered to be polymorphic since this has multiple inheritance.
Following are true for the above examples −
A Deer IS-A Animal
A Deer IS-A Vegetarian
A Deer IS-A Deer
A Deer IS-A Object
When we apply the reference variable facts to a Deer object reference, the following
declarations are legal −
Example
Animal a = d;
Vegetarian v = d;
Object o = d;
https://www.tutorialspoint.com/java/java_polymorphism.htm 1/6
15/04/2022, 16:16 Java - Polymorphism
All the reference variables d, a, v, o refer to the same Deer object in the heap.
Virtual Methods
In this section, I will show you how the behavior of overridden methods in Java allows you to
take advantage of polymorphism when designing your classes.
We already have discussed method overriding, where a child class can override a method in its
parent. An overridden method is essentially hidden in the parent class, and is not invoked unless
the child class uses the super keyword within the overriding method.
Example
System.out.println("Constructing an Employee");
this.name = name;
this.address = address;
this.number = number;
return name;
return address;
address = newAddress;
return number;
}
https://www.tutorialspoint.com/java/java_polymorphism.htm 2/6
15/04/2022, 16:16 Java - Polymorphism
}
setSalary(salary);
return salary;
salary = newSalary;
return salary/52;
Now, you study the following program carefully and try to determine its output −
s.mailCheck();
https://www.tutorialspoint.com/java/java_polymorphism.htm 3/6
15/04/2022, 16:16 Java - Polymorphism
e.mailCheck();
Output
Constructing an Employee
Constructing an Employee
Here, we instantiate two Salary objects. One using a Salary reference s, and the other using an
Employee reference e.
While invoking s.mailCheck(), the compiler sees mailCheck() in the Salary class at compile time,
and the JVM invokes mailCheck() in the Salary class at run time.
mailCheck() on e is quite different because e is an Employee reference. When the compiler sees
e.mailCheck(), the compiler sees the mailCheck() method in the Employee class.
Here, at compile time, the compiler used mailCheck() in Employee to validate this statement. At
run time, however, the JVM invokes mailCheck() in the Salary class.
This behavior is referred to as virtual method invocation, and these methods are referred to as
virtual methods. An overridden method is invoked at run time, no matter what data type the
reference is that was used in the source code at compile time.
16 Lectures 2 hours
Malhar Lathkar
https://www.tutorialspoint.com/java/java_polymorphism.htm 4/6
15/04/2022, 16:16 Java - Polymorphism
More Detail
Video
19 Lectures 5 hours
Malhar Lathkar
More Detail
Video
Anadi Sharma
More Detail
Video
Tushar Kale
More Detail
https://www.tutorialspoint.com/java/java_polymorphism.htm 5/6
15/04/2022, 16:16 Java - Polymorphism
Video
Monica Mittal
More Detail
Video
76 Lectures 7 hours
Arnab Chakraborty
More Detail
https://www.tutorialspoint.com/java/java_polymorphism.htm 6/6