This is very basic question, many of us didn't know this answer. In java, to call static methods we have to follow this classname.method();. But when comming to main(), its not been called by classname.main() even though it is static.
closed as not a real question by Jeff Atwood♦ Oct 10 '11 at 10:11
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
The best way to understand how "main()" is called by JVM is to see how "java" calls your main method. Here is the JNI example explaining the same.
|
|||
|
|
|
Yes it is. The java "interpreter" takes the class name you're giving it, looks for a static If, inside a program, you want to call another class's main method, you can. |
|||
|
|
|
The main method is invoked by the java interpreter itself when you run the class, without have to add the class names. you can find more detail explaination @ Why is the Java main method static? |
|||
|
|
|
You can call static methods in Java as though they were instance methods but this is considered bad practice.
|
|||
|
|
|
It's being called with Class.main() as you have to provide the class containing a main() method, when starting an application. |
|||
|
|
How can you say so? I am afraid you have got it wrong. Usually you never call main yourself.It is an entry-point for your program and JVM calls it to start the execution of the program.
This is how you execute your program from command line. ClassName here is the name of your Class having the main method. This class name is used by JVM to call your main method e.g, ClassName.main() Hope this helps. |
|||
|
|
mainmethod here: stackoverflow.com/questions/146576/… – michael667 Sep 28 '11 at 7:10mainis called automatically, so you don't have to explicitly have to call it yourself? – Roland Illig Sep 28 '11 at 7:10