错误: 在类 Hello 中找不到 main 方法, 请将 main 方法定义为: public static void main(String[] args)

  • Post author:
  • Post category:其他

作为java小白在编译第一个程序时出现 错误在类中找不到main方法,请将main方法定义为 public static void main(String[] args)否则 JavaFX 应用程序类必须扩展javafx.application.Application。
当看到这个报错是一头雾水,因为main方法已经写出
package demo;

public class hello {
public static void main(String[] args) {
System.out.println(“xxx”);

}

}
在查阅资料后得以解决
点开eclipse ->window->preference->run and debug->Lunching

在这里插入图片描述将图中的never修改为always即可
在这里插入图片描述


版权声明:本文为nobug233原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。