New Java programmers often encounter this message when they attempt to run a Java program:
'java.lang.NoSuchMethodError: main Exception in thread "main"'
What does this mean, what can cause it, and what should a new Java programmer do to fix it?
|
New Java programmers often encounter this message when they attempt to run a Java program:
What does this mean, what can cause it, and what should a new Java programmer do to fix it? | |||||
feedback
|
|
The problem is that you do not have a It
Note, that you HAVE actually specified an existing class (otherwise the error would have been different), but that class lacks the main method. | ||||
|
feedback
|
|
When you use the
the command loads the class that you nominated, and then looks for the entry point method called "main". More specifically, it is looking for a method that is declared as follows:
The specific requirements for the entry point method are:
(The If any one of the above requirements is not satisfied, the
If you encounter this error, check that you have satisfied all 6 of the requirements listed above. | |||||||
feedback
|
|
The name of the exception suggests that the program tried to call a method that doesn't exist. In this context, it sounds like the program does not have a This might have happened if the user tried to run a Normally the compiler is supposed to prevent this from happening so if this does happen, it's usually because the name of the method being called is getting determined ar run-time, rather than compile-time. To fix this problem, a new programmer must either add the midding method (assuming still that it's Read more about the main method here: http://csis.pace.edu/~bergin/KarelJava2ed/ch2/javamain.html | ||||
|
feedback
|
|
Other answers are doing a good job of summarizing the requirements of The most authoritative source is the Another good resource is the documentation for the application launcher itself: | ||||
|
feedback
|
|
Generally, it means the program you are trying to run does not have a "main" method. If you are going to execute a java program, the class being executed must have a For example, in the file Foo.java
This program should compile and run no problem - if Every executable program, regardless of language, needs an entry point, to tell the interpreter, operating system or machine where to start execution. In Java's case, this is the static method | ||||
|
feedback
|