The method signature of a Java main method is:
public static void main(String[] args){
...
}
Is there a reason for this method to be static?
|
|
|
The method is static because otherwise there would be ambiguity: which constructor should be called? Especially if your class looks like this:
Should the JVM call new JavaClass(int)? What should it pass for x? If not, should the JVM instantiate JavaClass without running any constructor method? I think it shouldn't, because that will special-case your entire class - sometimes you have an instance that hasn't been initialized, and you have to check for it in every method that could be called. There are just too many edge cases and ambiguities for it to make sense for the JVM to have to instantiate a class before the entry point is called. That's why main is static. I have no idea why main is always marked public though. |
|||||||||||||||||
|
|
The main() method in C++, C# and Java are static because they can then be invoked by the runtime engine without having to instantiate an instance of the parent class. |
|||||||||||||
|
|
This is just convention. In fact, even the name main(), and the arguments passed in are purely convention. When you run java.exe (or javaw.exe on Windows), what is really happening is a couple of Java Native Interface (JNI) calls. These calls load the DLL that is really the JVM (that's right - java.exe is NOT the JVM). JNI is the tool that we use when we have to bridge between the virtual machine world, and the world of C, C++, etc... The reverse is also true - it is not possible (at least to my knowledge) to actually get a JVM running without using JNI. Basically, java.exe is a super simple C application that parses the command line, creates a new String array in the JVM to hold those arguments, parses out the class name that you specified as containing main(), uses JNI calls to find the main() method itself, then invokes the main() method, passing in the newly created string array as a parameter. This is very, very much like what you do when you use reflection from Java - it just uses confusingly named native function calls instead. It would be perfectly legal for you to write your own version of java.exe (the source is distributed with the JDK), and have it do something entirely different. In fact, that's exactly what we do with all of our Java based apps. Each of our Java apps has its own launcher. We primarily do this so we get our own icon and process name, but it has come in handy in other situations where we want to do something besides the regular main() call to get things going (For example, in one case we are doing COM interoperability, and we actually pass a COM handle into main() instead of a string array). So, long and short: the reason it is static is b/c that's convenient. The reason it's called 'main' is because it had to be something, and main() is what they did in the old days of C (and in those days, the name of the function was important). I suppose that java.exe could have allowed you to just specify a fully qualified main method name, instead of just the class (java com.myompany.Foo.someSpecialMain) - but that just makes it harder on IDEs to auto-detect the 'launchable' classes in a project. |
|||||||||||||
|
|
If it wasn't, which constructor should be used if there are more than one? There is more information on the initialization and execution of Java programs available in the Java Language Specification. |
||||
|
|
Why public static void main(String[] args) ?This is how Java Language is designed and Java Virtual Machine is designed and written. Oracle Java Language SpecificationCheck out Chapter 12 Execution - Section 12.1.4 Invoke Test.main:
Oracle Java Virtual Machine SpecificationCheck out Chapter 2 Java Programming Language Concepts - Section 2.17 Execution:
Oracle OpenJDK SourceDownload and extract the source jar and see how JVM is written, check out
|
|||||||||||||||||
|
|
Because otherwise, it would need an instance of the object to be executed. But it must be called from scratch, without constructing the object first, since it is usually the task of the main() function (bootstrap), to parse the arguments and construct the object, usually by using these arguments/program parameters. |
||||
|
|
|
Let's simply pretend, that A application class would then look like this:
The distinction between constructor code and So this approach would force three different contracts upon the application:
The
Here neither Since Java was designed to be a simple language for the user it is not surprising that also the application entry point has been designed in a simple way using one contract and not in a complex way using three independent and brittle contracts. Please note: This argument is not about simplicity inside the JVM or inside the JRE. This argument is about simplicity for the user. 1Here the complete signature counts as only one contract. |
|||||||||||||||||
|
|
Before the main method is called, no objects are instantiated. Having the static keyword means the method can be called without creating any objects first. |
||||
|
|
|
Applets, midlets, servlets and beans of various kinds are constructed and then have lifecycle methods called on them. Invoking main is all that is ever done to the main class, so there is no need for state to be held in an object that is called multiple times. It's quite normal to pin main on another class (although not a great idea), which would get in the way of using the class to create a main object. |
||||
|
|
|
It's just a convention, but probably more convenient than the alternative. With a static main, all you need to know to invoke a Java program is the name and location of a class. If it weren't static, you'd also have to know how to instantiate that class, or require that the class have an empty constructor. |
||||
|
|
|
If the main method would not be static, you would need to create an object of your main class from outside the program. How would you want to do that? |
||||
|
|
|
I think the keyword 'static' makes the main method a class method, and class methods have only one copy of it and can be shared by all, and also, it does not require an object for reference. So when the driver class is compiled the main method can be invoked. (I'm just in alphabet level of java, sorry if I'm wrong) |
||||
|
|
|
main() is static because; at that point in the application's lifecycle, the application stack is procedural in nature due to there being no objects yet instantiated. It's a clean slate. Your application is running at this point, even without any objects being declared (remember, there's procedural AND OO coding patterns). You, as the developer, turn the application into an object-oriented solution by creating instances of your objects and depending upon the code compiled within. Object-oriented is great for millions of obvious reasons. However, gone are the days when most VB developers regularly used keywords like "goto" in their code. "goto" is a procedural command in VB that is replaced by its OO counterpart: method invocation. You could also look at the static entry point (main) as pure liberty. Had Java been different enough to instantiate an object and present only that instance to you on run, you would have no choice BUT to write a procedural app. As unimaginable as it might sound for Java, it's possible there are many scenarios which call for procedural approaches. This is probably a very obscure reply. Remember, "class" is only a collection of inter-related code. "Instance" is an isolated, living and breathing autonomous generation of that class. |
|||||
|
|
The protoype
In the JVM specification 5.2. Virtual Machine Start-up we can read:
Funny thing, in the JVM specification it's not mention that the main method has to be static. But the spec also says that the Java virtual machine perform 2 steps before :
In 2.9. Special Methods : A class or interface initialization method is defined :
And a class or interface initialization method is different from an instance initialization method defined as follow :
So the JVM initialize a class or interface initialization method and not an instance initialization method that is actually a constructor. So they don't need to mention that the main method has to be static in the JVM spec because it's implied by the fact that no instance are created before calling the main method. |
||||
|
|
|
Recently, similar question has been posted at Programmers.SE
In Java, the reason of
... |
||||
|
|
|
It is just a convention. The JVM could certainly deal with non-static main methods if that would have been the convention. After all, you can define a static initializer on your class, and instantiate a zillion objects before ever getting to your main() method. |
||||
|
|
|
The The opposite of In this case, This is necessary since |
||||
|
|
|
The static key word in the main method is used because there isn't any instantiation that take place in the main method. But object is constructed rather than invocation as a result we use the static key word in the main method. In jvm context memory is created when class loads into it.And all static members are present in that memory. if we make the main static now it will be in memory and can be accessible to jvm (class.main(..)) so we can call the main method with out need of even need for heap been created. |
||||
|
|
|
The true entry point to any application is a static method. If the Java language supported an instance method as the "entry point", then the runtime would need implement it internally as a static method which constructed an instance of the object followed by calling the instance method. With that out of the way, I'll examine the rationale for choosing a specific one of the following three options:
Breakdown:
Rationale:I'll go in reverse order for this one. Keep in mind that one of the design goals of Java was to emphasize (require when possible) good object-oriented programming practices. In this context, the constructor of an object initializes the object, but should not be responsible for the object's behavior. Therefore, a specification that gave an entry point of By making In summary, specifying a |
|||||
|
|
It is just a convention as we can see here:
http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/java.html#description |
||||
|
|
|
|||||
|
|
The java tool launches a Java application. It does this by starting a Java runtime environment, loading a specified class, and invoking that class's main method. The method declaration must look like the following:
The Java runtime searches for the startup class, and other classes used, in three sets of locations: the bootstrap class path, the installed extensions, and the user class path. Ref : Java Docs "Why main method is static in Java", there are quite a few reasons around
Conclusion can be : A] If main method were not declared static than JVM has to create instance of main Class and since constructor can be overloaded and can have arguments there would not be any certain and consistent way for JVM to find main method in Java. B] If main were not static, Java runtime would have to first create an extra instance of the class that contains main. If that class lacks a no-arg constructor, java would have no way to do that. 3. Anything which is declared in class in Java comes under reference type and requires object to be created before using them but static method and static data are loaded into separate memory inside JVM called context which is created when a class is loaded. If main method is static than it will be loaded in JVM context and are available to execution. |
|||||||||
|
|
As a class loads all static members loads to the memory and then java virtual memory calls main method as it is contract .. . . if it is non static it cannot be loaded to the memory. Only non-static members loaded to the memory while creating object only. And one more reason it shouldnot be inherited to sub-classes. Static members are not inherited. |
||||
|
|
|
because, a static members are not part of any specific class and that main method, not requires to create its Object, but can still refer to all other classes. |
||||
|
|
|
Actually before knowing this you people should know about types of memories wrto jvm 1)stack (all non static and non-referance types resides) 2)heap (all referance types resides) 3)registars 4)nativemethods 5)context (all static members and variables) By default every program written with in a class which is referance type any referance type is accessed using it's object only. but before starting program we cant create a object of the class. in jvm context memory is created when class loads into it.And all static members are present in that memory. if we make the main static now it will be in memory and can be accessible to jvm (class.main(..)) so we can call the main method with out need of even need for heap been created. |
||||
|
|
|
static indicates that this method is class method.and called without requirment of any object of class. |
||||
|
|
|
As the execution start of a program from main() and and java is purely object oriented program where the object is declared inside main() that means main() is called before object creation so if main() would non static then to call it there would be needed a object because static means no need of object.......... |
||||
|
|
|
It's a frequently asked question why main() is static in Java. Answer: We know that in Java, execution starts from main() by JVM. When JVM executes main() at that time, the class which contains main() is not instantiated so we can't call a nonstatic method without the reference of it's object. So to call it we made it static, due to which the class loader loads all the static methods in JVM context memory space from where JVM can directly call them. |
|||||
|
|
Static methods don't require any object. It runs directly so main runs directly. |
||||
|
|
|
From java.sun.com (there's more information on the site) : "The main method is static to give the Java VM interpreter a way to start the class without creating an instance of the control class first. Instances of the control class are created in the main method after the program starts." My understanding has always been simply that the main method, like any static method, can be called without creating an instance of the associated class, allowing it to run before anything else in the program. If it weren't static, you would have to instantiate an object before calling it-- which creates a 'chicken and egg' problem, since the main method is generally what you use to instantiate objects at the beginning of the program. |
|||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.