我有一个主应用程序类和一个fxmlcontroller类,但我纠结于连接/组织(混淆了如何调用它们以及如何组织它们以使GUI连接业务逻辑)业务逻辑和GUI ....可以请一些人告诉我调用以下函数的顺序,或者可以帮助我如何调用它们....
public void Main() //constructor
public static void main() // our main
public void start() //I don't know what it is, what purpose it has
// and where should be called
//Note: In main function there is a call as following
Run Code Online (Sandbox Code Playgroud)
public void initialize() //I don't know what it is and what purpose it has
public fxmlController() // which function should be called here....
Run Code Online (Sandbox Code Playgroud)