是否应该为GUI创建单独的线程,否则它将自动创建?如果我应该怎么做呢?
我不明白如何运行GUI。

package sample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class MyMain extends Application implements  Runnable
{
@Override
public void run()
{

}

@Override
public void start(Stage primaryStage) throws Exception
{
    Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
    primaryStage.setTitle("Hello World");
    primaryStage.setScene(new Scene(root, 200, 300));
    primaryStage.setMinWidth(220);
    primaryStage.setMinHeight(340);
    primaryStage.show();
}

public static void main(String[] args) {
    launch(args);
}
}

最佳答案

您不必创建新线程。只需使用以下代码:

public class MyMain extends Application {

    @Override
    public void start(Stage primaryStage) {
        Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
        primaryStage.setTitle("Hello World");
        primaryStage.setScene(new Scene(root, 200, 300));
        primaryStage.setMinWidth(220);
        primaryStage.setMinHeight(340);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}


Application类自己负责线程处理。

10-06 06:13