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

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 に答える