Q:

Java program to overload main() method

belongs to collection: Java Method Overloading Programs

0

Java program to overload main() method

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will overload the main() method by creating 3 methods with a different number of arguments.

Program/Source Code:

The source code to overload the main() method is given below. The given program is compiled and executed successfully.

// Java program to overload main() method

public class Main {
  public static void main(int num) {
    System.out.println("Method with integer argument: " + num);
  }

  public static void main(String str) {
    System.out.println("Method with String argument: " + str);
  }

  public static void main(String[] args) {
    System.out.println("Method with String[] argument.");

    main(10);
    main("Hello");
  }
}

Output:

Method with String[] argument.
Method with integer argument: 10
Method with String argument: Hello

Explanation:

In the above program, we created a Main class that contains 3 overloaded main() methods with a specified different number of arguments. Here, method with string[] argument is an entry point for the program, here we called the overloaded method and printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java program to implement method overloading based... >>
<< Java program to implement method overloading based...