×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Numbers Program In Java Java Inheritance
Java Method Overloading - Java
4012    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.
Swami Vivekananda
Truth can be stated in a thousand different ways, yet each one can be true.
Swami Vivekananda
3856
75.03
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52291
25/06/2018     44059
01/01/2018     42982
28/06/2017     40718
02/08/2017     39573
01/08/2017     33742
06/07/2017     33559
15/05/2017     32837
14/07/2017     29127
11/09/2018     29120
softetechnologies