Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i was recently asked is public static void main(String arg[]) format of main method is fixed? can we change it? can we use main without any one of public static or void ? if not why it is not hard coded that main(String arg[]) will stand for public static void main(String arg[]) always?

I was asked this in an exam.

Thanks

share|improve this question

6 Answers

up vote 5 down vote accepted

The signature of the main method is specified in the Java Language Specifications section 12.1.4 and clearly states:

The method main must be declared public, static, and void. It must specify a formal parameter (ยง8.4.1) whose declared type is array of String.

  • it must be public otherwise it would not be possible to call it
  • it must be static since you have no way to instantiate an object before calling it
  • the list of String arguments is there to allow to pass parameters when executing a Java program from the command line. It would have been possible to define it without arguments but is more practical like that (and similar to other languages)
  • the return type is void since it does not make sense to have anything else: a Java program can terminate before reaching the end of the main method (e.g., by calling System.exit())

The method signature can therefore be:

public static void main( String[] args )
public static void main( String... args )

note that the varargs version (...) is only valid from Java 5

Edit

As the Java language allows the brackets [] to be positioned after the type or the variable (the first is generally preferred)

public static void main( String args[] ) // valid but usually non recommended

is also valid

share|improve this answer
You can easily create a new launcher that will do it in a different way, the method doesn't have to be public (the JNI interface allows you to call any method) and it doesn't have to be static, the JNI interface again can create any object by calling it's constructor and then call the instance method. – Maurício Linhares Apr 5 '12 at 12:53
@MaurícioLinhares I perfectly know that I could call whatever I want but there is no guarantee that it will work. A JVM (there are other JVM also not from Oracle) are only forced to follow the specs. They could simply generate an error and tell you "no way, not standard even if technically possible". A specification is called specification for a reason. – Matteo Apr 5 '12 at 12:56
there is no guarantee that it will work ? What do you mean by that? That my personal launcher won't work because the spec says otherwise? Any launcher will work provided the class being launched meets it's criteria, please check the other answers and the source code examples. – Maurício Linhares Apr 5 '12 at 12:58
Yes, a JVM not from Oracle (or a new version) could just tell you that what you wrote is not OK with the language specs and it would be OK. – Matteo Apr 5 '12 at 13:01
1  
@abhi In Java you you can position the brackets after the type or the variable: both are allowed (although the first is generally preferred). – Matteo May 20 at 8:32
show 3 more comments

If you look into JDK source code (jdk-src\j2se\src\share\bin\java.c):

/* Get the application's main method */
mainID = (*env)->GetStaticMethodID(env, mainClass, "main",
                   "([Ljava/lang/String;)V");
...
{    /* Make sure the main method is public */
...
mods = (*env)->CallIntMethod(env, obj, mid);
if ((mods & 1) == 0) { /* if (!Modifier.isPublic(mods)) ... */
    message = "Main method not public.";
    messageDest = JNI_TRUE;
    goto leave;
...

It becomes very clear that it must have only this signature.

share|improve this answer
I agree but the JDK code is not the correct reference. The language specs are – Matteo Apr 5 '12 at 12:53
The implementation of the spec is not the correct reference? This one blew me up. – Maurício Linhares Apr 5 '12 at 12:56
1  
No an implementation of a specification is not a reference. Could even be wrong. There is no the implementation. There is just an implementation. – Matteo Apr 5 '12 at 12:59

The main method must be public so it can be found by the JVM when the class is loaded. Similarly, it must be static so that it can be called after loading the class, without having to create an instance of it. All methods must have a return type, which in this case is void.

share|improve this answer
so we can have a non void return type?i am new to java – amar Apr 5 '12 at 12:35
@amar no it must be void since it is defined like that in the language specification – Matteo Apr 5 '12 at 12:48

I cannot answer for the arguments of the method but it must be public because the jvm must be able to access the function and it must be static because the jvm does not know how to create an instance of your class.

This post provides a good detailed answer about the reasoning for static: Why is the Java main method static?

This post provides a good answer for why main is void: Why is main() in java void?

share|improve this answer

You can change it if you create a new loader for your app. The public static void main( String args[] ) format is just the default solution people working on the JVM found to call your Java programs, so that there is a definite way to do it.

The real implementation we have today just uses the JNI interface to call the public static void main (String args[]) method by using this function, so you could easily write exactly the same code if you wanted using JNI and have a different method to load your app.

Here's an example in code that was taken from this page.

Here's the current linux launcher program, the method lookup starts here.

share|improve this answer
You sure? My hotspot source code has it hardcoded: (*env)->GetStaticMethodID(env, mainClass, "main", "([Ljava/lang/String;)V"); – Voo Apr 5 '12 at 12:41
No it's defined in the language specs and it is only guaranteed to work if implemented as defined. Anything not following the specs is not guaranteed to work. docs.oracle.com/javase/specs/jls/se7/html/… – Matteo Apr 5 '12 at 12:45
Of course it is, check the launcher source code. gist.github.com/2310831#L465 – Maurício Linhares Apr 5 '12 at 12:50
1  
@Matteo we are not talking about the spec here, we're talking about the possibility of having a different launcher that can call a different method and you're just repeating it is impossible while it isn't. – Maurício Linhares Apr 5 '12 at 12:55
1  
@MaurícioLinhares of course we are speaking about the specs. The question asks about Java. Java is precisely defined language and that's it. – Matteo Apr 5 '12 at 13:03
show 3 more comments
  • public-main() method must be used by any one of the outside the class as well as inside the class so its public

  • static-static is necessary bcoz in java if we define class than we define object for that class and than and only than we can use that class..but instead of this we directly use by write the word static

  • void-for main() cant return any value like int or char main()-main is the function or method which we can use for accessing the future of java String-in java all we write consider as a string args-arguments

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.