Java Program To Implement Method Overloading

Chapter: Miscellaneous Last Updated: 16-04-2023 12:42:00 UTC

Program:

            /* ............... START ............... */
                
public class MethodOverloadingExample {
    public static void main(String[] args) {
        MethodOverloadingExample obj = new MethodOverloadingExample();
        obj.print();
        obj.print(10);
        obj.print("Hello, World!");
    }

    // Method with no parameters
    void print() {
        System.out.println("This is an example of method overloading");
    }

    // Method with an integer parameter
    void print(int num) {
        System.out.println("Number: " + num);
    }

    // Method with a string parameter
    void print(String str) {
        System.out.println("String: " + str);
    }
}

                /* ............... END ............... */
        

Output

This is an example of method overloading

Number: 10

String: Hello, World!

> The first print() method is called with no arguments, so it simply prints the message "This is an example 
  of method overloading" to the console.

> The second print() method is called with an integer argument of 10, so it prints the message "Number: 10" 
  to the console.

> The third print() method is called with a string argument of "Hello, World!", so it prints the message 
  "String: Hello, World!" to the console.

> Note that each of these three print() methods has the same name, but Java is able to distinguish between 
  them based on their parameters. This is the essence of method overloading - having multiple methods with 
  the same name, but different parameters, so that we can use the same name for related functionality.


Notes:

  • This program demonstrates the concept of method overloading in Java. Method overloading is a way to define multiple methods in a class with the same name, but with different parameters. In this program, we define three methods called print() with different parameter lists.
  • The first print() method takes no parameters and simply prints a message to the console. The second print() method takes an integer parameter and prints the value of that parameter to the console. The third print() method takes a string parameter and prints the value of that parameter to the console.
  • In the main() method of the program, we create an instance of the MethodOverloadingExample class and call each of the three print() methods with different arguments. Because each print() method has a different set of parameters, Java is able to distinguish between them and call the appropriate method based on the arguments we pass in.
  • This program demonstrates the flexibility and convenience that method overloading provides in Java. By defining multiple methods with the same name but different parameters, we can use the same method name for related functionality, which can make our code more concise and easier to read.

Tags

Java Program To Implement Method Overloading #How to implement method overloading in java

Similar Programs Chapter Last Updated
Find Unique Elements In List Java Miscellaneous 07-10-2023
Java Program To Implement A Custom equals() and hashcode() In Java Miscellaneous 07-10-2023
Java Program To Find The Intersection Of Two HashSets Miscellaneous 07-10-2023
Java Program To Remove Duplicate Elements From List Miscellaneous 07-10-2023
Java program to parse a date and time string from a log file and store it in a database Miscellaneous 19-09-2023
Java Program To Print All The Dates In A Month That Fall On A Weekend Miscellaneous 19-09-2023
Java Program To Find Number Of Working Days In A Month Miscellaneous 19-09-2023
Java Program To Calculate Age From Year Of Birth Miscellaneous 16-09-2023
How To Check If Two Strings Are Anagrams In Java Miscellaneous 22-08-2023
Java Program To Make A Snake Game Miscellaneous 15-08-2023
Java Program To Find Repeated Characters Of String Miscellaneous 15-08-2023
String To Array In Java Miscellaneous 11-08-2023
Java Program To Convert Date To String Miscellaneous 11-08-2023
Java Program To Convert String To Date Object Miscellaneous 11-08-2023
Java Program To Find Number Of Days In A Month Miscellaneous 11-08-2023
Java Program To Print First And Last Day Of Month Miscellaneous 11-08-2023
Java Program To Find Leap Year Between Two Dates Miscellaneous 11-08-2023
Java Code To Find Difference Between Two Dates In Years Months And Days Miscellaneous 11-08-2023
Java program to calculate age from year of birth Miscellaneous 29-06-2023
Swap Two Numbers Without Using Third Variable In Java Miscellaneous 02-06-2023
Java Program To Find The Average Of An Array Of Numbers Miscellaneous 02-06-2023
How Do You Find The Factorial Of A Number In Java Miscellaneous 02-06-2023
Java Program That Takes Two Numbers As Input And Prints Their Sum Miscellaneous 27-05-2023
How To Get The Length Of An Array In Java Miscellaneous 27-05-2023
Java Add Element To List Example Miscellaneous 19-05-2023
Java Program To Square All Items In List Miscellaneous 17-05-2023
Java Program To Merge Two Lists Miscellaneous 17-05-2023
How To Reverse A List In Java Miscellaneous 17-05-2023
Java Program To Find Unique Elements In An Array Miscellaneous 14-05-2023
Java Program To List All Elements In List Miscellaneous 30-04-2023

1 2