0

我正在尝试创建扫雷,并且我很早就设法让我的 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);
            }
         }
      } 
   }
}
4

3 回答 3

9

使用.而不是=调用方法

buttons[x][y].setVisible(false);
于 2013-09-03T12:59:08.583 回答
1

你确定这setVisible()是一个独立的方法吗?尝试buttons[x][y].setVisible(false);

setVisible 是属于 JButton 对象的方法,所以不能随便调用。想想“什么被设置为可见的?”

目前你得到一个返回的 void 因为你实际调用的是你的直接类中的一个方法,setVisible()当你想调用 JButtonsetVisibile

于 2013-09-03T13:05:38.200 回答
0

你可能不想隐藏它们,你可以做

buttons[x][y].setEnable(false);

当您这样做时,您可以根据它们背后的内容更改它们上的图标

于 2013-09-03T13:01:41.097 回答