0

我正在用 Java 制作井字游戏来自学 Swing 课。不过,我遇到了一些问题。

首先,你如何比较使用图标的按钮?

symX = new ImageIcon(this.getClass().getResource("symbolX.png"));
symO = new ImageIcon(this.getClass().getResource("symbolO.png"));

我使用这两个变量来设置按钮图像。

if (e.getSource() instanceof JButton) {
    JButton source = (JButton) e.getSource();

    if (isX) {
        source.setIcon(symX);
        source.setEnabled(false);
        source.setDisabledIcon(symX);       
    } else {    
        source.setIcon(symO);
        source.setEnabled(false);
        source.setDisabledIcon(symO);   
    }
}           

第二个问题是你在哪里比较对象是一个动作事件?我试图在上面的代码中比较 if 语句的内部,但是 Eclipse 总是给我编译时错误。

如果我将代码放在带有按钮的方法中,Java 似乎永远不会接触到它们。

根据要求,这是我的整个 Java 文件。

package ticTacToeGUI;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class tttGUI extends JFrame implements ActionListener {

private static final long serialVersionUID = 1L;

    JPanel panel = new JPanel();
    JButton btn1, btn2, btn3, btn4, btn5, btn6, btn7, btn8, btn9;

    private ImageIcon symX, symO;
    private ImageIcon symIco = new ImageIcon(this.getClass().getResource("symbolX.png"));
    private boolean isX = true;     

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

    public tttGUI() {
        //Setup the window.
        super("Tic-Tac-Toe GUI 1.0");
        setSize(425,425);
        setIconImage(symIco.getImage());
        setResizable(false);
        setLocationRelativeTo(null);
        setDefaultCloseOperation(EXIT_ON_CLOSE);

        //Create the content.
        symX = new ImageIcon(this.getClass().getResource("symbolX.png"));
        symO = new ImageIcon(this.getClass().getResource("symbolO.png"));       

        panel.setLayout(new GridLayout(3,3));
        setVisible(true);

        JButton btn1 = new JButton();
        JButton btn2 = new JButton();
        JButton btn3 = new JButton();
        JButton btn4 = new JButton();
        JButton btn5 = new JButton();
        JButton btn6 = new JButton();
        JButton btn7 = new JButton();
        JButton btn8 = new JButton();
        JButton btn9 = new JButton();

        btn1.addActionListener(this);
        btn2.addActionListener(this);
        btn3.addActionListener(this);
        btn4.addActionListener(this);
        btn5.addActionListener(this);
        btn6.addActionListener(this);
        btn7.addActionListener(this);
        btn8.addActionListener(this);
        btn9.addActionListener(this);

        panel.add(btn1);
        panel.add(btn2);
        panel.add(btn3);
        panel.add(btn4);
        panel.add(btn5);
        panel.add(btn6);
        panel.add(btn7);
        panel.add(btn8);
        panel.add(btn9);

        add(panel);
        revalidate();
    }

    public void actionPerformed(ActionEvent e) {    
        if (e.getSource() instanceof JButton) {
            JButton source = (JButton) e.getSource();

            if (isX) {
                source.setIcon(symX);
                source.setEnabled(false);
                source.setDisabledIcon(symX);       
            } else {    
                source.setIcon(symO);
                source.setEnabled(false);
                source.setDisabledIcon(symO);   
            }
        }   
        isX ^= true;    
    }
}
4

3 回答 3

4

我知道这已经晚了两年,但未来的其他人可能会发现这很有用......

无论如何,巧合的是,我正在编写 3D Tic Tac Toe。为了比较ImageIcons,我用描述初始化图标String,然后使用:

((ImageIcon) JLabel().getIcon()).getDescription().compareTo("someOtherDesc")

希望对您或其他人将来有所帮助...

于 2015-07-10T12:00:50.693 回答
1

我对如何做到这一点有一些想法,例如:

symX = new ImageIcon(this.getClass().getResource("symbolX.png"));
symO = new ImageIcon(this.getClass().getResource("symbolO.png"));

if (btn1.getIcon().equals(symX) && btn2.getIcon().equals(symX) {
    // Your logic here...
}

actionPerformed()如果您将局部变量btn1...btn9提升为实例变量,这可以在您的方法中完成。似乎您混淆了概念,因为您已经btn1...btn9声明为实例变量,而且还创建了新的作为局部变量。

public class TttGUI extends JFrame implements ActionListener {

private static final long serialVersionUID = 1L;

    private JPanel panel = new JPanel();
    private JButton btn1 = new JButton();
    private JButton btn2 = new JButton();
    private JButton btn3 = new JButton();
    private JButton btn4 = new JButton();
    private JButton btn5 = new JButton();
    private JButton btn6 = new JButton();
    private JButton btn7 = new JButton();
    private JButton btn8 = new JButton();
    private JButton btn9 = new JButton();

    private ImageIcon symX, symO;
    private ImageIcon symIco = new ImageIcon(this.getClass().getResource("symbolX.png"));
    private boolean isX = true;     

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

    public TttGUI() {
        //Setup the window.
        super("Tic-Tac-Toe GUI 1.0");
        setSize(425,425);
        setIconImage(symIco.getImage());
        setResizable(false);
        setLocationRelativeTo(null);
        setDefaultCloseOperation(EXIT_ON_CLOSE);

        //Create the content.
        symX = new ImageIcon(this.getClass().getResource("symbolX.png"));
        symO = new ImageIcon(this.getClass().getResource("symbolO.png"));       

        panel.setLayout(new GridLayout(3,3));
        setVisible(true);

        btn1.addActionListener(this);
        btn2.addActionListener(this);
        btn3.addActionListener(this);
        btn4.addActionListener(this);
        btn5.addActionListener(this);
        btn6.addActionListener(this);
        btn7.addActionListener(this);
        btn8.addActionListener(this);
        btn9.addActionListener(this);

        panel.add(btn1);
        panel.add(btn2);
        panel.add(btn3);
        panel.add(btn4);
        panel.add(btn5);
        panel.add(btn6);
        panel.add(btn7);
        panel.add(btn8);
        panel.add(btn9);

        add(panel);
        revalidate();
    }
}

我已更改您的类名,使其符合 Java 约定(类名必须始终以大写开头)。

于 2013-10-14T04:39:27.680 回答
1

虽然为时已晚,但任何搜索的人都可以在比较 imageicons 时获得帮助。我认为露营很容易

    ImageIcon icon = new ImageIcon("images/myimage.jpg");

    JLabel a = new JLabel(icon);

    JLabel b = new JLabel(icon);



    if(a.getIcon().toString().equals(b.getIcon().toString()))
    {
      //do whatever
    }
于 2016-11-17T14:25:03.507 回答