load()
方法FXMLLoader
類用於加載FXML文件。那麼什麼是getClass().getResource()
在getClass()。getResource在加載fxml文件中的作用是什麼?
Parent root = FXMLLoader.load(getClass().getResource("MainFXML.fxml"));
做有什麼不對load
有不同的實現
Parent root = FXMLLoader.load(("MainFXML.fxml"));
從類路徑中讀取文件。 'FXMLLoader.load((「MainFXML.fxml」));'從文件系統加載文件 – Jens