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
What is the purpose of the finalize() method?
What are measurable parameters?
Does sprintf allocate memory?
Why can't we override private static methods?
What do you know about the garbate collector?
What are the two types of java programming?
How does sublist works in java?
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?
How do you sort an array in java?
What is the exception hierarchy in java?
What is the use of System class?
List out five keywords related to exception handling ?
How do I stop concurrentmodificationexception?
Which keyword specify that a variable is effectively final ?
What are parameters in a method?