Iv. Lesson Proper: Applications Development and Emerging Technologies
Iv. Lesson Proper: Applications Development and Emerging Technologies
Iv. Lesson Proper: Applications Development and Emerging Technologies
What are the basic concepts of Polymorphism as feature of OOP and how to use it?
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
Let us look at an example.
public interface Vegetarian{}
public class Animal{}
public class Deer extends Animal implements Vegetarian{}
Now, the Deer class is considered to be polymorphic since this has multiple inheritance. Following are
true for the above examples −
Example
Deer d = new Deer();
Animal a = d;
Vegetarian v = d;
Object o = d;
All the reference variables d, a, v, o refer to the same Deer object in the heap.
Virtual Methods
In this section, the behavior of overridden methods will be shown in Java and it allows you to take
advantage of polymorphism when designing your classes.
Method overriding is 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
/* File name : Employee.java */
public class Employee {
private String name;
private String address;
private int number;
return number;
}
}
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.
Usages and Advantages of Polymorphism
Method overloading allows methods that perform similar or closely related functions to be
accessed through a common name. For example, a program performs operations on an array of
numbers which can be int, float, or double type. Method overloading allows you to define three
methods with the same name and different types of parameters to handle the array of operations.
Applications Development and Emerging Technologies Page 5 of 6
What are the basic concepts of Polymorphism as feature of OOP and how to use it?
Method overriding allows a sub class to use all the general definitions that a super class provides
and add specialized definitions through overridden methods.
Method overriding works together with inheritance to enable code reuse of existing classes without
the need for re-compilation.
Method overloading occurs when the type signatures of two methods are different whereas method
overriding occurs only when the type signatures of two methods are the same.
In method overloading, the compiler determines the correct method to be called by comparing type
signatures. In method overriding, the JVM determines the correct method to be called based on the
object that the invoking variable refers to.
Method overloading is possible on methods with private, static, and final access modifiers whereas
method overriding is not possible on these access modifiers.
Applications Development and Emerging Technologies Page 6 of 6
What are the basic concepts of Polymorphism as feature of OOP and how to use it?
EXERCISE 1
A student is to create a simple Java program about different types of persons. The Person class, the
Student class, the Employee class and You class. How many classes will be defined based on the
problem and identify the parent and children classes.
EXERCISE 2
From the previous exercise (Exercise 1), identify the methods of the Person, Student and Employee
classes.