是的,在Java中我們可以將main方法宣告為私有的。
它可以成功編譯,沒有任何錯誤,但在執行時會提示main方法不是公共的。
class PrivateMainMethod { private static void main(String args[]){ System.out.println("Welcome to Tutorials Point"); } }
上述程式碼在編譯時成功執行,但在執行時會拋出錯誤。
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
以上是在Java中,我們可以將主方法宣告為私有的嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!