0

我正在尝试在 eclipse 中运行非常简单的应用程序:

package hello;

 public class RunMain {
    public static void main(String[] args){
        System.out.println("hello neha!!");

    }
    }

它在控制台中显示错误:无法找到或加载主类hello.RunMain它使用jdk 1.7可能是什么原因

4

1 回答 1

0

右键单击运行方式-> 运行配置

在 Main 选项卡中: Main Class: hello.RunMain

在 ClassPath 选项卡中:在用户条目下添加项目(来自添加项目)

单击运行。

于 2013-10-30T09:23:20.957 回答