Forums Register Login

Does the main method have to be public?

+Pie Number of slices to send: Send
Does the main method have to be public?
becoz...even private works fine.
+Pie Number of slices to send: Send
See this link (Requires an account!)
It is a bug! But Sun has closed the problem saying "It won't be fixed" with the comment "The runtime allows call to private methods, because of reflection. Fixing it will cause potential troubles."
It violates the Encapsulation for sure!
+Pie Number of slices to send: Send
BUT put in mind that for the exam you have to go with the JLS not the compiler. JLS says it must be public.. so if it's private in the exam.. it should give an error at run-time..
+Pie Number of slices to send: Send
Explanation by Kathy Sierra (to appear in the new SCJP FAQ):


Question: Is it allowed to declare the main method private?
Answer: Provided by Kathy Sierra
Former JVM versions (pre-1.4) allowed the main method to have any accessibility (private, etc).
This incompatibility with Section 12.1.4 of the Java Language Specification has been fixed as of version 1.4.
In order to invoke a main method from the command-line, it is now mandatory to declare the main method as follows:
public static void main (String[] args)
If the main method has any access level other than public, it will no longer run from the command-line.

 
+Pie Number of slices to send: Send
Thanks a lot
+Pie Number of slices to send: Send
According to RHE book the main() method is declared public by convention.It can have any visibilty modiefier.However, it is requirrement that it be static and void.
+Pie Number of slices to send: Send
 

In order to invoke a main method from the command-line, it is now B]mandatory[/B] to declare the main method as follows:
public static void main (String[] args)


Just a note for those who doesn't know :
Becareful that there are many variations of declaring an array :

[ November 26, 2002: Message edited by: Ioow Gneb ]
+Pie Number of slices to send: Send
Poornachandran R

A last initial does not match the JavaRanch Naming Policy. Please adjust your display name. You can change it here.

Thanks for your co-operation!
today's feeble attempt to support the empire
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 762 times.
Similar Threads
executable server.jar problem
main has to be in a public class?
main method must be public . Why ?
Error message on running the java code from Eclipse
main()
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 03:20:25.