我试图在eclipse中运行非常简单的应用程序:
package hello;
public class RunMain {
public static void main(String[] args){
System.out.println("hello neha!!");
}
}
它在控制台中显示错误: 无法找到或加载主类hello.RunMain 它使用jdk 1.7可能是可能的原因
答案 0 :(得分:0)
右键单击运行方式 - > RunConfiguration
在主标签中: 主类:hello.RunMain
在ClassPath选项卡中: 在用户条目下添加项目(来自添加项目)
点击“运行”。