Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 eclipse 中运行非常简单的应用程序:
package hello; public class RunMain { public static void main(String[] args){ System.out.println("hello neha!!"); } }
它在控制台中显示错误:无法找到或加载主类hello.RunMain它使用jdk 1.7可能是什么原因
右键单击运行方式-> 运行配置
在 Main 选项卡中: Main Class: hello.RunMain
在 ClassPath 选项卡中:在用户条目下添加项目(来自添加项目)
单击运行。