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



当我运行下面的代码时,我得到无法找到或加载main类的错误。我已经删除了这个包并重新创建了它。但错误仍然存在。我做了一些方法来修复它,如右键单击包name -> properties -> run选项来改变main方法,但没有什么。但是如果我创建另一个包名并在其中写入这段代码,程序就可以工作了。

package craps;
public class Craps {

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

}

您的代码没有任何错误我不知道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)

相关内容

  • 没有找到相关文章

最新更新