我无法处理我的 JButtons 矩阵中的事件。我需要弄清楚按下了哪个按钮,然后更改对象颜色以匹配按钮。
我目前正在使用此代码:
private class matrixButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
JButton btn = (JButton) (e.getSource());
for (int i = 0; i < matrixBouton.length; i++)
{
for (int j = 0; j < matrixBouton[i].length; j++)
{
btn.equals(matrixBouton[i][j]);
if (btn.getBackground() == COLOR_NEUTRAL)
{
btn.setBackground(COLOR_PLAYER);
}
}
}
}
}