“Error: Main method not found in class MyClass, please define the main method as…”

前端 未结 8 1274
南旧
南旧 2020-11-22 01:15

New Java programmers often encounter these messages when they attempt to run a Java program.


Error: Main met         


        
8条回答
  •  南旧
    南旧 (楼主)
    2020-11-22 01:39

    I feel the above answers miss a scenario where this error occurs even when your code has a main(). When you are using JNI that uses Reflection to invoke a method. During runtime if the method is not found, you will get a

    java.lang.NoSuchMethodError: No virtual method

提交回复
热议问题