无法构造应用程序实例

时间:2018-07-30 07:32:11

标签: javafx

我正在尝试在公共类中启动另一个类中定义的应用程序,并获得“无法构造应用程序实例” -Exception。以下示例非常简单。我想念什么?---线索将不胜感激。

此问题不同于问题

Unable to construct javafx.application.Application instance

我想在单独的类中定义应用程序及其启动。

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;

public class Main {
    public static void main(String[] args) {
        Application.launch(OKButton.class, args);
    }
}

class OKButton extends Application {
    @Override
    public void start(Stage stage) {
        Button btn = new Button("OK");
        Scene scene = new Scene(btn, 200, 250);
        stage.setScene(scene);
        stage.show();
    }
}

1 个答案:

答案 0 :(得分:1)

问题是,JavaFX无法访问OKButton类的构造函数。您必须将OKButton类放在一个单独的文件中,或者以这种方式使用它:

public class Main {
    public static void main(String[] args) {
        Application.launch(OKButton.class, args);
    }

    public static class OKButton extends Application {

        @Override
        public void start(Stage stage) {
            Button btn = new Button("OK");
            Scene scene = new Scene(btn, 200, 250);
            stage.setScene(scene);
            stage.show();
        }
    }
}