×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Numbers Program In Java Java Inheritance
Java Method Overloading - Java
4262    Arnab De    16/07/2017

What is functions or method overloading?


Two or functions or method with same name but different signature or header, can define within a class in Java. This programming concept is known as function overloading or method overloading.

 

Note: Signature can differ by the
  1. Change of the data types
  2. Numbers of the arguments
  3. Sequence of the arguments.
softetechnologies

But if we change the data type from float to double or for it to short, long or byte, then function overloading is not executed properly due to type promotion of the data types.

Note: Method overloading is also known as Compile time binding or Early Binding.

softetechnologies


Example of Function Overloading

import java.util.*;
public class JavaPower{
public int Power(int a){
return a*a;
}
public int Power(int a,int n){
int m=1;
for(int i=0;i<n;i++){
m=m*a;
}
return m;
}
public static void main(String []args){
int a,n;
Scanner sc=new Scanner(System.in);
System.out.print("Enter A Number : ");
a=sc.nextInt();
System.out.print("Enter A Power : ");
n=sc.nextInt();
JavaPower jp=new JavaPower();
System.out.println( a + " Square = " + jp.Power(a));
System.out.print(a + " To The Power = " + jp.Power(a,n));
}
}

Numbers Program In Java Java Inheritance
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
Try not to become a man of success, but rather try to become a man of value.
Albert Einstein
2185
80.75
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54110
25/06/2018     45116
01/01/2018     43670
28/06/2017     41205
02/08/2017     40215
01/08/2017     34263
06/07/2017     34062
15/05/2017     33299
11/09/2018     30314
14/07/2017     29826
softetechnologies