Skip to main content

Polymorphism, Method overloading and Method Overriding

 Introduction of Polymorphism


    Polymorphism is the concept by which we can perform single action/operation in different ways. In other word ability to tae more than one form called polymorphism.


    Polymorphism plays an important role in allowing objects having different internal structure to share same external interface. That means the general class of operation may be access in same manner but the specified action with each operation may be different. Ploymorphism is use in implementing inheritance. There are two types of polymorphism in java those are as follows:

  1. Compile-time polymorphism.
  2. Runtime polymorphism.

    We can perform polymorphism using method overloading and method overrding.

1. Compile-time polymorphism:

    We can achive the compile time polymorphism using function/method overloading concept. When there are multiple function with the same name but having different parameter list or parameter then it is called function/method overloading. We can overload a function/method by changing parameter list or type of parameter. For example,

class MultiplyFun { 

// Method with 2 parameter 

static int Multiply(int a, int b) 

return a * b; 

// Method with the same name but 3 parameter 

static int Multiply(int a, int b, int c) 

return a * b * c; 

class Main { 

public static void main(String[] args) 

System.out.println(MultiplyFun.Multiply(2, 4)); 

System.out.println(MultiplyFun.Multiply(2, 7, 3)); 

OUTPUT:
8
42

2. Runtime polymorphism:

    We can achive the runtime ploymorphism using funtion/method overriding. If a subclass provide specific implementation of method which is already declare in sperclass then it is called as function/method overriding. In method overriding the method name and the parameter list is same. For example,

class Vehicle{

  void run(){System.out.println("Vehicle is running");}

  }

  class Bike2 extends Vehicle{

  void run(){System.out.println("Bike is running safely");}

  public static void main(String args[]){

  Bike2 obj = new Bike2();

  obj.run();

  }

}

Output:
Bike is running safely



Comments

Popular posts from this blog

Decision Making and Branching Statements / Control Statements

 Introduction     Java is a set of statements which executed sequentially in the order in which they appear. This will happen when option or repetitions of certains are not necessary. However, We have a number of situation, where we may have to change the order of execution of statement on bases of certain conditions. This involves a kind of dicision making to see the particular condition occured or not and the direction of execution will execute according to it.     When program braks the sequential flow and jump on the another part of code then it's called branching . When branching is on particular condition then it's called conditional branching . If branches executes without any particular conditions then it's call unconditional branching .     Java supports such decision making capabilities and supports following statements known as Control statement or Decision making statement .     if statements     switch statement   ...