为了账号安全,请及时绑定邮箱和手机立即绑定

为什么对象数组中的元素没有更新?

为什么对象数组中的元素没有更新?

慕婉清6462132 2021-12-01 19:56:20
在使用 JavaFX 创建应用程序时,我遇到了一个小问题 - 我的数组中的元素不知何故不会随着对这些元素所做的更改而更新。一开始我想指出 - 不要关注我的应用程序的结构和模型 - 我已经知道它不好,我改变了它,但我仍然不明白为什么我的问题存在。我的数组的初始化方式如下:public class GameBoardAI implements IGameModel{Random rand = new Random();int currentPlayer = 1;TicTacViewController tacController = new  TicTacViewController();Button[] buttonss = new Button[]{ tacController.btn1, tacController.btn2, tacController.btn3, tacController.btn4,         tacController.btn5, tacController.btn6, tacController.btn7, tacController.btn8, tacController.btn9};  问题是,当我创建按钮数组时,按钮还没有连接到视图,所以它们仍然是空值。当我试图在我的按钮上调用一些方法时,我遇到了一个问题:public void switchPlayer() {if(currentPlayer == 1){                  currentPlayer=2;    buttonss[rand.nextInt(9)].fire();}if(currentPlayer == 2)    currentPlayer = 1;}你可以在这里看到,我试图从我在实例变量中创建的按钮数组中获取一些随机按钮。这是代码的一部分,当按钮位于 TicTacViewController 中时:    public class TicTacViewController implements Initializable{@FXMLprivate Label lblPlayer;@FXMLprivate Button btnNewGame;@FXMLprivate GridPane gridPane;private static final String TXT_PLAYER = "Player: ";private IGameModel game = new GameBoard();@FXMLpublic Button btn1;@FXMLpublic Button btn2;@FXMLpublic Button btn3;@FXMLpublic Button btn4;@FXMLpublic Button btn5;@FXMLpublic Button btn6;@FXMLpublic Button btn7;@FXMLpublic Button btn8;@FXMLpublic Button btn9;据我了解,问题是,当我将数组创建为实例变量时,mu 按钮仍然为空 - 它们尚未连接到视图。但是这里发生了一些奇怪的事情:当我将数组初始化放在 switchPlayer 方法中而不是将其作为实例变量执行时 - 一切正常。所以看起来当我在调用方法时创建数组时按钮已经连接到视图并且没有问题。它破坏了我对引用变量的了解 - 为什么当我们将数组创建为实例变量时它不起作用?因为我认为即使我们在数组中有一个引用变量 - 当我们更改这个引用变量时,它们也会在我们的数组中更改。更具体地说 - 即使当我们初始化一个数组并且按钮还没有连接到视图时,它们也会在之后连接 - 所以当我们调用 switchPlayer 方法时,按钮应该已经连接到视图 - 但编译器告诉我他们是空的。有人可以解释我这里有什么问题吗?为什么在调用方法时按钮仍然为空,因为它们在数组创建中,即使它们之后连接到视图?
查看完整描述

1 回答

?
梵蒂冈之花

TA贡献1900条经验 获得超5个赞

Java 是一种传值语言。对象类型变量不是对象指针,它们只是保存一个对象引用(即内存地址)。例子:


String str = "Hello"; // A String type variable holding reference of "Hello" string

String str2 = str; // Variable "str2" now copies the reference of "str"

String str2 = "World"; // Variable "str2" changes the reference it holds to the string "World" (in other word, it is being replaced)

它经常被混淆,因为以下是有效的:


List<String> foo = new ArrayList<>(); // Let foo hold the reference of an empty arraylist

List<String> bar = foo; // Let bar hold the reference that is held by foo

bar.add("hello");

System.out.println(foo); // Prints "[hello]"

这是有效的,因为bar已经复制了ArrayListfrom的对象引用foo,因此对ArrayListvia 的任何操作bar都将由 反映foo,因为它们都持有相同的对象引用。


回到你的问题。如果tacController尚未加载 FXML 文件,则所有Button引用都将为null. 所以你要做的是复制null引用并将这些null引用保存在数组中。因此,您将永远无法访问实际Button对象。


查看完整回答
反对 回复 2021-12-01
  • 1 回答
  • 0 关注
  • 153 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信