Why do we need main method to execute a java program?
Main method is auto called by JVM. It is the place, where JVM enters into the class. It is called before the class is instantiated by its constructor. There are below reasons on its signature.
1. Public access modifier: it is visible to outer environment called JVM.
2. Static non-access modifier: it is called before the class is instantiated, hence JVM use class name to call the main method.
3. Void return type: It return no value to JVM.
4. String array parameter: It takes command line arguments.
| Is This Answer Correct ? | 11 Yes | 1 No |
How can you sort dates?
What is the importance of finally block in exception handling?
What access modifiers can be used for methods?
What is arguments in java?
How many bits is a double?
What is a function in java?
What is the use of toarray () in java?
How static variable work in java?
What is meant by class loader and how many types are there?
What is the difference between char and char *?
How do you detect memory leaks?
Why Over riding is Run Time Polymorphism?