对Netbeans感到沮丧!!
我创建了一个包含四个类的项目。 现在我想运行Main类的main()方法。 我该怎么做。整个包中没有其他main()方法。
注意:Main Class中有多个方法(包括main())。
那我该怎么办?
这写在项目属性--->运行---> computer.project.netbeans.ComputerProjectNetbeans (Screenshot is Here)
这是我的主要课程的代码示例:
class Main
{
void Main()
{
\\Code
}
void A()
{
\\Code
}
void B()
{
\\Code
}
void C()
{
\\Code
}
}
答案 0 :(得分:3)
您需要添加public static void main(String[] args){}
方法,在其中创建Main类的实例,以便NetBeans识别“where”以启动并开始执行代码。您可以在所有方法之后将main
方法放在同一个类中。
添加了代码
public static void main(String[] args) {
Main main = new Main();
//Additional code
}