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 one 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 one do to fix it? |
|||||
|
|
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. |
||||
|
|
|
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. 1 - One really obscure variation of this is when one or more of the characters in "main" is NOT a LATIN-1 character ... but a Unicode character that looks like the corresponding LATIN-1 character when displayed. |
|||||||
|
|
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 |
||||
|
|
|
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: |
||||
|
|
|
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 |
||||
|
|
|
If you are running the correct class and the main is properly defined, also check if you have a class called String defined in the same package. This definition of String class will be considered and since it doesn't confirm to
|
||||
|
|
|
This error is just because u don't have the main method with the syntax for which java interpreter is searching.interpreter searches for the following syntax.
If it doesn't found main method with this syntax, just give an error that Main thread not found. Note-: Because main method can also be overloaded so keep the syntax same for which interpreter is searching. |
||||
|
|
Sometimes this happens even if u have the main method written properly. Simplest solution is to include a line break before the opening curly braces, Like this :
yes, it actually works.., it worked for me. |
|||||
|
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.