所以我的问题很简单。当他们是 a而不是 a时,我可以访问单独班级中的班级成员,但当他们是时,我似乎不能。使用 JDK 7u6(带 JavaFX 2.2)。String
Label
Label
简单的例子。第一个有效,第二个无效。 foo.label
可以在第一个示例中分配,但我在第二个示例中得到一个 NullPointer。谁能解释为什么foo.label
在下面的第二个示例中为 null ?
更新:我从原始问题中删除了@FXML 注释,因为我认为它们对于我遇到的问题不是必需的。另外,请参阅@jewelsea对答案的评论......最后,为了完整性,我添加了我的 FXML 文件(在 Q 的底部)。
这有效:
// Example 1:
public class SampleController implements Initializable {
Foo foo = new Foo();
public void handleButtonAction(ActionEvent event) {
System.out.println("You clicked me!");
foo.label = "Hello World!";
System.out.println(foo.label);
}
@Override public void initialize(URL url, ResourceBundle rb) {
}
}
// Example 1 -- Foo.java:
public class Foo {
public String label;
}
这不起作用:
// Example 2:
public class SampleController implements Initializable {
Foo foo = new Foo();
public void handleButtonAction(ActionEvent event) {
System.out.println("You clicked me!");
foo.label.setText("Hello World!"); // gives NullPointer exception !!
}
@Override public void initialize(URL url, ResourceBundle rb) {
}
}
// Example 2 -- Foo.java:
import javafx.scene.control.Label;
public class Foo {
public Label label;
}
这是我的 FXML 文件,用于上述任一示例:
<AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml" fx:controller="javafxapplication4.SampleController">
<children>
<Button layoutX="126" layoutY="90" text="Click Me!" onAction="#handleButtonAction" fx:id="button" />
<Label layoutX="126" layoutY="120" minHeight="16" minWidth="69" fx:id="label" text="hey!" />
</children>
</AnchorPane>