如何在main中使用我自己的类?

时间:2016-04-08 09:01:44

标签: java javafx borderpane

我得到了一份令我疯狂的学校作业。我可以在搜索网页时找到我想要的答案,所以我真的会对这个问题提出一些建议。

该任务是创建一个基本的JavaFX应用程序,其中显示“Hello World”但我应该包含helloMain.java和扩展BorderPane的类HelloWorld.java。我已经使用helloMain解决了赋值,但是当我试图将一些代码(根节点及其包含的所有代码)移动到HelloWorld.java中时,当我运行应用程序时,Scene似乎没有加载(只是一个空的窗口)。显然我做错了什么,但我无法弄清楚是什么。

在helloJava中我得到了以下代码(我非常确定这是正确的)

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

public class helloWorldMain extends Application {

    @Override
    public void start(Stage primaryStage) {
        HelloWorld helloWorld = new HelloWorld();
        Scene scene = new Scene(helloWorld, 300, 300);
        primaryStage.setTitle("Hello World");
        primaryStage.setScene(scene);
        primaryStage.show();
        }

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

    }

}

在我的HelloWorld.java中,我得到了这段代码

public class HelloWorld extends BorderPane {

public HeloWorld() {
    final Text text = new Text(0, 130, "Hello World");
    Pane txtPane = new Pane();
    Pane txtPane2 = new Pane();         

    VBox root = new VBox();
    txtPane.getChildren().add(text);
    txtPane2.getChildren().add(text);

    root.getChildren().addAll(txtPane, txtPane2);

}

}

我认为可以说我真的不知道自己在做什么,但我正在努力学习。

  1. 我在HelloWorld课程中缺少什么?它是构造函数中的东西吗?或者我应该使用某种领域?还是别的什么?
  2. 我一直在寻找解决这个问题的几个小时,但是我没有找到任何与我想要做的事情有关的搜索结果。我在哪里可以读到“这种方法”(不知道它是什么当你创建自己的类并尝试在main中使用它时,调用,可能是为什么我找不到任何东西?
  3. 很多代码都喜欢能帮助我理解这一点的人:)

1 个答案:

答案 0 :(得分:3)

HelloWorld中,您将Node添加到您未添加到任何位置的VBox,因此它们会悬空在空中&#34;。< / p>

将此行添加到HelloWorld构造函数的末尾 ...

getChildren().add(root);

......你已经完成了。