我正在尝试创建Minesweeper并且我很快就遇到了我的JButton数组返回void而不是JButton因此我无法对其执行任何操作。
以下是代码:(当我想删除按钮时,错误发生在最后一行)
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Game extends JFrame implements ActionListener
{
JButton[][] buttons;
int rows;
int cols;
int x;
int y;
public Game(int rows, int cols)
{
setTitle("Minesweeper");
setSize(500, 500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.rows = rows;
this.cols = cols;
setLayout(new GridLayout(rows, cols));
buttons(rows, cols);
}
public void buttons(int tableX, int tableY)
{
buttons = new JButton[tableX][tableY];
for (x = 0; x < tableX; x++)
{
for (y = 0; y < tableY; y++)
{
buttons[x][y] = new JButton();
buttons[x][y].setActionCommand("Pressed");
buttons[x][y].addActionListener(this);
this.add(buttons[x][y]);
}
}
}
public void actionPerformed(ActionEvent e)
{
for (x = 0; x < rows; x++)
{
for (y = 0; y < cols; y++)
{
if (e.getActionCommand().equals("Pressed"))
{
buttons[x][y] = setVisible(false);
}
}
}
}
}
答案 0 :(得分:9)
使用.
代替=
来调用方法
buttons[x][y].setVisible(false);
答案 1 :(得分:1)
您确定setVisible()
是一个独立的方法吗?试试buttons[x][y].setVisible(false);
setVisible是一个属于JButton对象的方法,所以你不能随意调用它。想一想“什么是可见的?”
目前你正在获得一个返回的void,因为当你想要调用JButton的{{{}时,你实际调用的是一个名为setVisible()
的直接类中的方法(当它不存在时返回void) 1}}
答案 2 :(得分:0)
你可能不想隐藏它们,你可以做到
buttons[x][y].setEnable(false);
当你这样做时,你可以根据它们背后的内容更改它们上的图标