Netbeans错误:无法找到或加载主类

时间:2014-03-29 09:28:43

标签: java netbeans main-method

当我运行以下代码时,我收到无法找到或加载main类的错误。我已经删除了包并再次创建它。但错误仍然存​​在。我做了一些方法来修复它,例如右键单击包name -> properties -> run选项来更改main方法但没有任何方法。但是如果我创建另一个包名并在其中编写此代码,程序就可以工作。

package craps;

public class Craps {


public static void main(String[] args) {
    int number = 10;
    System.out.println(number);
}   

}

1 个答案:

答案 0 :(得分:0)

您的代码没有任何错误 我不知道Netbeans发生了什么。我多年来一直在使用它并且生活在这种错误中。 也许你会在netbeans内存耗尽而你正在编辑这个文件的那一刻得到这个。

My workaround for this kind of errors are
1.Do some dummy editing in that file like commenting some empty line // and save All and recompile it
2.Close and open this project (Sometimes work)