gpt4 book ai didi

java - 如何创建 'get' 方法来返回 JButton

转载 作者:行者123 更新时间:2023-11-30 03:26:27 28 4
gpt4 key购买 nike

大家好,我要返回一个特定的 JButton,然后对其进行 setText。这是代码片段:

JButton[][] tiles = new JButton[4][4];
for (int i=0; i<4; i++) {
for (int j=0; j<4; j++){
tiles[i][j] = new JButton();
}
}

我基本上想使用访问器方法返回此 JButton。

public JButton getJButton(int i, int j) {   
return JButton[i][j];
}

这是我当前的想法,但是当前返回 null,对解决方案有什么想法吗?

非常感谢。

最佳答案

private JButton[][]tiles; 应该是一个字段变量

在构造函数中执行tiles = new JButton[4][4];对于...

然后将 get 方法更改为:

public JButton getJButton(int i, int j) {   
return tiles[i][j];
}

关于java - 如何创建 'get' 方法来返回 JButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30091943/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com