Forums Register Login

Why is main not a key word?

+Pie Number of slices to send: Send
Hi everybody,

I just started studying for the java 2 programmers exam. Can anybody tell me why main is not a key word? Can I use main for any variable or function name? (I hope not).

Sandra
+Pie Number of slices to send: Send
Well, give it a try. I'm reminded by the compiler every once in a while that I can't use "return" as a variable name.

In fact, main() is a method like any other. The *only* special thing about it is that when you give a class name at JVM startup the JVM calls the main method on that class with an array of strings.

The Java In General forums are good place for general questions ... this one is focused on servlets.

Cheers!
+Pie Number of slices to send: Send
Moving to the SCJP forum.

This forum is for Servlets questions.

Thanks

Mark
+Pie Number of slices to send: Send
A main method has "special meaning" (it can be used as an entry point) only if it is public and static, returns void, and takes a String array as its argument. That is...

public static void main(String[] args){}

As an entry point, main can also be modified with synchronized, strictfp, or final. Note that the String array can be labeled with any legal identifier, and this variable is local to the method, so you can define String[] args (or whatever you want to call it) outside of main as well. But "main" itself is not a keyword, so it can be used as an identifier of anything you like.

(Note that prior to 1.4, the entry-point main was not required to be public.)
[ December 01, 2004: Message edited by: marc weber ]
+Pie Number of slices to send: Send
Below is some illustrative (although generally inadvisable) code...


Yes, this compiles and runs.
[ December 01, 2004: Message edited by: marc weber ]
Yeah. What he said. Totally. Wait. What? Sorry, I was looking at this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 662 times.
Similar Threads
implements not there in jsp page directives
Assertions
public static void main method
constructor
discusss question about the key word and reserved word
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 29, 2024 03:52:06.