---
title: "What is Runtime Polymorphism in java?"  
description: "What is Runtime Polymorphism in java?"  
author: "Samuel Fernandes"  
published: 2015-04-02  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/2389/what-is-runtime-polymorphism-in-java  
category: "java"  
tags: ["java"]  
reading_time: 2 minutes  

---

# What is 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.

## 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();    }  }  
```

**Output:**running safely with 60km.\

## Answers

### Answer by Anonymous User

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.

## 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();    }  }  
```

**Output:**running safely with 60km.\


---

Original Source: https://www.mindstick.com/interview/2389/what-is-runtime-polymorphism-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
