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

在 Java 中将 ActionListener() 添加到 JButton-Array:编译错误

在 Java 中将 ActionListener() 添加到 JButton-Array:编译错误

繁星coding 2023-08-09 15:11:01
我正处于我的编程生涯的开始:)并为自己设定了编写一个简单的国际象棋程序的目标。我还没有实现任何逻辑。不幸的是,我通过以下代码收到此错误消息: Exception in thread "AWT-EventQueue-0" java.lang.Error: Unresolved compilation problem不过,我仍然可以正常启动程序并获取棋盘图案的字段。仅当我按下按钮时,我才会收到上述错误。import java.awt.*;import javax.swing.*;import java.awt.event.*;public class Chess extends JFrame {    //Define variables    private JButton[][] buttons = new JButton[8][8];    private Container board;    private int size = 600;    // Main class opens constructor of Chess    public static void main(String[] args) {        new Chess();    }    // constructor    public Chess() {        //initialize the Chessboard        board = getContentPane();        board.setLayout(new GridLayout(8, 8));        setSize(size, size);        setVisible(true);        //Add buttons to the frame        for (int y = 0; y < 8; y++) {            for (int x = 0; x < 8; x++) {                buttons[y][x] = new JButton();                board.add(buttons[y][x]);                buttons[y][x].setBorderPainted(false);                //color buttons in the checkerboard pattern                if ((y + x) % 2 != 0) {                    buttons[y][x].setBackground(new Color(201, 166, 113));                } else {                    buttons[y][x].setBackground(Color.WHITE);                }                //Add event listener                ActionListener buttonListener = new ActionListener() {                    public void actionPerformed(ActionEvent e) {                        pressedButton(y,x);                    }                };                buttons[y][x].addActionListener(buttonListener);            }        }    }    public void pressedButton(int y, int x) {        System.out.println(x + " " + y);    }}
查看完整描述

1 回答

?
qq_笑_17

TA贡献1818条经验 获得超7个赞

我快速设置了一个沙箱,并使用 java 版本 11 和语言级别 11 让它工作。


您不能在 ActionListener 中传递x或内部。y


for (int y = 0; y < 8; y++) {

            for (int x = 0; x < 8; x++) {

                int tx = x;

                int ty = y;

                buttons[y][x] = new JButton();

                board.add(buttons[y][x]);

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


                //color buttons in the checkerboard pattern

                if ((y + x) % 2 != 0) {

                    buttons[y][x].setBackground(new Color(201, 166, 113));

                } else {

                    buttons[y][x].setBackground(Color.WHITE);

                }


                //Add event listener

                ActionListener buttonListener = new ActionListener() {

                    public void actionPerformed(ActionEvent e) {

                        pressedButton(ty, tx);

                    }

                };

                buttons[y][x].addActionListener(buttonListener);


            }

        }

请注意添加的tx和ty使其起作用。问候


查看完整回答
反对 回复 2023-08-09
  • 1 回答
  • 0 关注
  • 91 浏览

添加回答

举报

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