How do you overload method main in Java? code example
Example 1: can you overload main method?
Yes, as long as we pass different parameter(s), we can overload it
Example 2: method overloading in java
// Overloading by Changin the number of Arguments
class MethodOverloading {
private static void display(int a){
System.out.println("Arguments: " + a);
}
private static void display(int a, int b){
System.out.println("Arguments: " + a + " and " + b);
}
public static void main(String[] args) {
display(1);
display(1, 4);
}
}