Java Method Overloading

In this Java article we want to learn about Java Method Overloading, in Java method overloading is a feature that allows class to have multiple methods with the same name but with different parameters. it means that you can create several methods with the same name.

 

 

When Java see a method call, it examines the arguments passed to the method, and it determine which method should be called. Java uses different number and types of the arguments to identify appropriate method. if there are multiple methods with the same name, Java checks the parameters to determine which method to call.

 

 

This is an example of working with method overloading

In this example MyClass class has two methods with the same name add. but one method takes two int parameters, and the other one takes two double parameters. when you call add method with two int values, Java will call first add method. if you call add method with two double values, Java will call the second add method.

 

 

Benefits of Java Method Overloading

Java method overloading provides several benefits:

  1. Simplicity: Method overloading simplifies the code by reducing number of method names required.
  2. Readability: Overloaded methods make the code more readable, because it allows developers to use descriptive method names that accurately reflect the functionality of the method.
  3. Flexibility: Method overloading provides flexibility, because it allows developers to create methods that accept different types and numbers of arguments.

 

 

 

This is the complete code

In this example we have created a class called OverloadingExample that contains two add methods, one takes two int parameters and another one takes two double parameters. in the main method, we call add method twice, once with two int values and once with two double values.

 

 

Run the code this will be the result

Java Method Overloading
Java Method Overloading

 

 

 

Learn More

Leave a Comment