public class trial {
static {
System.out.println("Main not required to print this");
System.exit(0);
}
}
此代码仍然会抛出错误
错误:在课堂试验中找不到主要方法,请将主要方法定义为: public static void main(String [] args) 或者JavaFX应用程序类必须扩展javafx.application.Application **
有帖子说它可以在 java 1.9 中运行,但它没有。