Method Overloading in Java
Overloading occurs in Java when two or more methods have the same name and different parameter (number and, or type)
For overloading to occur, the following preconditions must be met:
- The method names must be same. (remember that Java is case sensitive, as such: getBalance() and getbalance() are two different methods.
- The parameter list must vary by number (and, or) type
We see an example of method overloading in the ArithmeticOperation Example below.
In lines 3, 6 and 9, we have three overloaded sum methods, each taking different parameters.
Happy Learning!!!.
Member discussion