Can u overload main()method.Give with example.

Answer Posted / rama krishna dwadasi

Yes, We can overloaded main method also,,,,but JVM start
execution from main method with parameters of String args[]
only...so below example output is "Inside second method"

Example:

public class OverloadMain {

public static void main(int a[]) {
System.out.println("Inside first Main Method");
}

public static void main(String args[]) {
System.out.println("Inside Second Method");
}

}

Is This Answer Correct ?    51 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of the finalize() method?

927


What are measurable parameters?

764


Does sprintf allocate memory?

801


Why can't we override private static methods?

711


What do you know about the garbate collector?

782


What are the two types of java programming?

735


How does sublist works in java?

707


What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?

847


How do you sort an array in java?

737


What is the exception hierarchy in java?

696


What is the use of System class?

825


List out five keywords related to exception handling ?

779


How do I stop concurrentmodificationexception?

715


Which keyword specify that a variable is effectively final ?

752


What are parameters in a method?

776