0% found this document useful (0 votes)
24 views5 pages

6 Runtime Polymorphism in Java

Polymorphism in Java allows a single action to be performed in different ways, categorized into compile time and runtime polymorphism. Runtime polymorphism, or dynamic method dispatch, resolves method calls at runtime based on the object type, often demonstrated through upcasting and method overriding. The document provides examples illustrating runtime polymorphism with classes like Bike and Bank, emphasizing that data members cannot achieve runtime polymorphism.

Uploaded by

Anima
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views5 pages

6 Runtime Polymorphism in Java

Polymorphism in Java allows a single action to be performed in different ways, categorized into compile time and runtime polymorphism. Runtime polymorphism, or dynamic method dispatch, resolves method calls at runtime based on the object type, often demonstrated through upcasting and method overriding. The document provides examples illustrating runtime polymorphism with classes like Bike and Bank, emphasizing that data members cannot achieve runtime polymorphism.

Uploaded by

Anima
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

8/14/2015 Polymorphism in Java ­ javatpoint

Content Menu ▼

Polymorphism in Java
Polymorphism in java is a concept by which we can perform a single
action by different ways. Polymorphism is derived from 2 greek words:
poly and morphs. The word "poly" means many and "morphs" means
forms. So polymorphism means many forms.

There are two types of polymorphism in java: compile time


polymorphism and runtime polymorphism. We can perform
polymorphism in java by method overloading and method overriding.

If you overload static method in java, it is the example of compile time


polymorphism. Here, we will focus on runtime polymorphism in java.

Runtime Polymorphism in Java


Runtime polymorphism or Dynamic Method Dispatch is a process in
which a call to an overridden method is resolved at runtime rather than
compile­time.

In this process, an overridden method is called through the reference


variable of a superclass. The determination of the method to be called is
based on the object being referred to by the reference variable.

Let's first understand the upcasting before Runtime Polymorphism.

Upcasting

When reference variable of Parent class refers to the object of Child


class, it is known as upcasting. For example:

. class A{}
. class B extends A{}

. A a=new B();//upcasting

http://www.javatpoint.com/runtime­polymorphism­in­java 1/5
8/14/2015 Polymorphism in Java ­ javatpoint

Example of Java Runtime Polymorphism


In this example, we are creating two classes Bike and Splendar.
Splendar class extends Bike class and overrides its run() method. We
are calling the run method by the reference variable of Parent class.
Since it refers to the subclass object and subclass method overrides the
Parent class method, subclass method is invoked at runtime.

Since method invocation is determined by the JVM not compiler, it is


known as runtime polymorphism.

. class Bike{
. void run(){System.out.println("running");}
. }
. class Splender extends Bike{
. void run(){System.out.println("running safely with 60km");}
.
. public static void main(String args[]){
. Bike b = new Splender();//upcasting
. b.run();
. }
. }

Test it Now

Output:running safely with 60km.

Real example of Java Runtime


Polymorphism
Consider a scenario, Bank is a class that provides method to get the rate
of interest. But, rate of interest may differ according to banks. For
example, SBI, ICICI and AXIS banks could provide 8%, 7% and 9% rate
of interest.

Note: It is also given in method overriding but there was no upcasting.

. class Bank{
. int getRateOfInterest(){return 0;}
. }
.
. class SBI extends Bank{

http://www.javatpoint.com/runtime­polymorphism­in­java 2/5
8/14/2015 Polymorphism in Java ­ javatpoint

. int getRateOfInterest(){return 8;}


. }
.
. class ICICI extends Bank{
. int getRateOfInterest(){return 7;}
. }
. class AXIS extends Bank{
. int getRateOfInterest(){return 9;}
. }
.
. class Test3{
. public static void main(String args[]){
. Bank b1=new SBI();
. Bank b2=new ICICI();
. Bank b3=new AXIS();
. System.out.println("SBI Rate of Interest: "+b1.getRateOfInterest());
. System.out.println("ICICI Rate of Interest: "+b2.getRateOfInterest());
. System.out.println("AXIS Rate of Interest: "+b3.getRateOfInterest());
. }
. }

Test it Now

Output:
SBI Rate of Interest: 8
ICICI Rate of Interest: 7
AXIS Rate of Interest: 9

Java Runtime Polymorphism with data member

Method is overridden not the datamembers, so runtime polymorphism


can't be achieved by data members.

In the example given below, both the classes have a datamember


speedlimit, we are accessing the datamember by the reference variable
of Parent class which refers to the subclass object. Since we are
accessing the datamember which is not overridden, hence it will access
the datamember of Parent class always.

Rule: Runtime polymorphism can't be achieved by data


members.

. class Bike{

http://www.javatpoint.com/runtime­polymorphism­in­java 3/5
8/14/2015 Polymorphism in Java ­ javatpoint

. int speedlimit=90;
. }
. class Honda3 extends Bike{
. int speedlimit=150;
.
. public static void main(String args[]){
. Bike obj=new Honda3();
. System.out.println(obj.speedlimit);//90
. }

Test it Now

Output:90

Java Runtime Polymorphism with Multilevel


Inheritance
Let's see the simple example of Runtime Polymorphism with multilevel
inheritance.

. class Animal{
. void eat(){System.out.println("eating");}
. }
.
. class Dog extends Animal{
. void eat(){System.out.println("eating fruits");}
. }
.
. class BabyDog extends Dog{
. void eat(){System.out.println("drinking milk");}
.
. public static void main(String args[]){
. Animal a1,a2,a3;
. a1=new Animal();
. a2=new Dog();
. a3=new BabyDog();
.
. a1.eat();
. a2.eat();
. a3.eat();
. }
. }

Test it Now

http://www.javatpoint.com/runtime­polymorphism­in­java 4/5
8/14/2015 Polymorphism in Java ­ javatpoint

Output: eating
eating fruits
drinking Milk

Try for Output

. class Animal{
. void eat(){System.out.println("animal is eating...");}
. }
.
. class Dog extends Animal{
. void eat(){System.out.println("dog is eating...");}
. }
.
. class BabyDog1 extends Dog{
. public static void main(String args[]){
. Animal a=new BabyDog1();
. a.eat();
. }}

Test it Now

Output: Dog is eating

Since, BabyDog is not overriding the eat() method, so eat() method of


Dog class is invoked.

← prev next →

http://www.javatpoint.com/runtime­polymorphism­in­java 5/5

You might also like