Polymorphism in Java
The word polymorphism means having many forms. In simple words, we can define polymorphism as the ability of a message to be displayed in more than one form.
Real life example of polymorphism: A person at the same time can have different characteristic. Like a man at the same time is a father, a husband, an employee. So the same person posses different behaviour in different situations. This is called polymorphism.
Polymorphism is considered as one of the important features of Object Oriented Programming. Polymorphism allows us to perform a single action in different ways. In other words, polymorphism allows you to define one interface and have multiple implementations. The word “poly” means many and “morphs” means forms, So it means many forms.
In Java polymorphism is mainly divided into two types:
- Compile time Polymorphism
- Runtime Polymorphism
-
Compile time polymorphism: It is also known as static polymorphism. This type of polymorphism is achieved by function overloading or operator overloading.
-
Method Overloading: When there are multiple functions with same name but different parameters then these functions are said to be overloaded. Functions can be overloaded by change in number of arguments or/and change in type of arguments.
- Example: By using different types of arguments
// Java program for Method overloadingclassMultiplyFun {// Method with 2 parameterstaticintMultiply(inta,intb){returna * b;}// Method with the same name but 2 double parameterstaticdoubleMultiply(doublea,doubleb){returna * b;}}classMain {publicstaticvoidmain(String[] args){System.out.println(MultiplyFun.Multiply(2,4));System.out.println(MultiplyFun.Multiply(5.5,6.3));}}chevron_rightfilter_noneOutput:8 34.65
- Example: By using different numbers of arguments
// Java program for Method overloadingclassMultiplyFun {// Method with 2 parameterstaticintMultiply(inta,intb){returna * b;}// Method with the same name but 3 parameterstaticintMultiply(inta,intb,intc){returna * b * c;}}classMain {publicstaticvoidmain(String[] args){System.out.println(MultiplyFun.Multiply(2,4));System.out.println(MultiplyFun.Multiply(2,7,3));}}chevron_rightfilter_noneOutput:8 42
- Example: By using different types of arguments
-
Operator Overloading: Java also provide option to overload operators. For example, we can make the operator (‘+’) for string class to concatenate two strings. We know that this is the addition operator whose task is to add two operands. So a single operator ‘+’ when placed between integer operands, adds them and when placed between string operands, concatenates them.
In java, Only “+” operator can be overloaded:
- To add integers
- To concatenate strings
Example:
// Java program for Operator overloadingclassOperatorOVERDDN {voidoperator(String str1, String str2){String s = str1 + str2;System.out.println("Concatinated String - "+ s);}voidoperator(inta,intb){intc = a + b;System.out.println("Sum = "+ c);}}classMain {publicstaticvoidmain(String[] args){OperatorOVERDDN obj =newOperatorOVERDDN();obj.operator(2,3);obj.operator("joe","now");}}chevron_rightfilter_noneOutput:Sum = 5 Concatinated String - joenow
-
Method Overloading: When there are multiple functions with same name but different parameters then these functions are said to be overloaded. Functions can be overloaded by change in number of arguments or/and change in type of arguments.
-
Runtime polymorphism: It is also known as Dynamic Method Dispatch. It is a process in which a function call to the overridden method is resolved at Runtime. This type of polymorphism is achieved by Method Overriding.
-
Method overriding, on the other hand, occurs when a derived class has a definition for one of the member functions of the base class. That base function is said to be overridden.
Example:
// Java program for Method overriddingclassParent {voidPrint(){System.out.println("parent class");}}classsubclass1extendsParent {voidPrint(){System.out.println("subclass1");}}classsubclass2extendsParent {voidPrint(){System.out.println("subclass2");}}classTestPolymorphism3 {publicstaticvoidmain(String[] args){Parent a;a =newsubclass1();a.Print();a =newsubclass2();a.Print();}}chevron_rightfilter_noneOutput:subclass1 subclass2
-
Method overriding, on the other hand, occurs when a derived class has a definition for one of the member functions of the base class. That base function is said to be overridden.
Recommended Posts:
- Dynamic Method Dispatch or Runtime Polymorphism in Java
- Scala | Polymorphism
- Polymorphism in Ruby
- Polymorphism in Python
- Perl | Polymorphism in OOPs
- Java.util.LinkedList.poll(), pollFirst(), pollLast() with examples in Java
- Java.util.function.IntPredicate interface in Java with Examples
- Java.lang.Short toString() method in Java with Examples
- Java lang.Long.highestOneBit() method in Java with Examples
- Java lang.Long.numberOfLeadingZeros() method in Java with Examples
- Java lang.Long.numberOfTrailingZeros() method in Java with Examples
- Java lang.Long.byteValue() method in Java with Examples
- Java.util.LinkedList.offer(), offerFirst(), offerLast() in Java
- Java lang.Long.reverse() method in Java with Examples
- Java.util.concurrent.Phaser class in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : bajracharyakshitij


