是的,我们可以在Java中将main方法声明为私有方法。
它编译成功,没有任何错误,但是在运行时表示主要方法不是公共的。
class PrivateMainMethod { private static void main(String args[]){ System.out.println("Welcome to nhooo.com"); } }
上面的代码在编译时成功运行,但是会在运行时引发错误。
Error: Main method not found in class PrivateMainMethod, please define the main method as: public static void main(String[] args) or a JavaFX application class must extend javafx.application.Application