2
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;

public class Concentration extends JFrame implements ActionListener {

    private JButton buttons[][]=new JButton[4][4];
    int i,j,n;      

    public Concentration() {            
        super ("Concentration");    
        JFrame frame=new JFrame();
        setSize(1000,1000);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel=new JPanel(new GridLayout(4,4));
        panel.setSize(400, 400);            
        for( i=0; i<buttons.length; i++){
            for (j=0; j<buttons[i].length;j++){ 
                n=i*buttons.length+buttons[i].length;
                buttons[i][j]=new JButton();                    
                panel.add(buttons[i][j]);
                buttons[i][j].addActionListener(this);
            }
        }
        add(panel);
        pack();
        setVisible(true);       
    }

    public void actionPerformed(ActionEvent e) {            
        buttons[i][j].setIcon(new ImageIcon(
                 getClass().getResource("/images/2.jpg")));
    }

    public static void main(String args[]){
        new Concentration();
    }    
}

这是我的代码。我正在制作记忆游戏。我想这样做,每次单击一个按钮时,该按钮都会显示图像,但是

 buttons[i][j].addActionListener(this);

在那,methot 不能带 i 和 j 并且不显示任何图像。

但是例如当我这样做时

 buttons[2][2].addActionListener(this);

它仅在 2x2 中显示。图片。我能做些什么来解决这个问题?

4

2 回答 2

3

可能的解决方案:

  • 在 ActionListener 内部,遍历按钮数组,查看数组中哪个 JButton 与按下的按钮匹配,通过调用获得e.getSource()
  • 给你的 JButtons actionCommand 对应于 i 和 j 的字符串
  • 创建一个单独的 ActionListener 实现类,该类具有可以通过构造函数设置的 i 和 j 字段,并为每个按钮提供一个唯一的带有 i 和 j 的 ActionListener。
于 2013-09-23T12:04:37.373 回答
2

试试这个代码:

public void actionPerformed(ActionEvent e) {
    if(e.getSource() instanceof JButton){
        JButton pressedButton = (JButton) e.getSource();
        if(pressedButton.getIcon() == null){
            pressedButton.setIcon(new ImageIcon(getClass().getResource("/images/2.jpg")));
        } else {
            pressedButton.setIcon(null);
        }
    }
}

直接形成EventObject javadoc:

public Object getSource()

最初发生事件的对象。

返回: 最初发生事件的对象。

这意味着不需要知道按下按钮的数组索引,因为它可以通过getSource()方法知道。

于 2013-09-23T12:07:06.773 回答