0
public int open=0;
private JButton  opens[]=new JButton[1];

  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);
            }
        }


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

            }
        if (open==1){
            opens[0].setIcon(null);
            opens[1].setIcon(null);
        }
    }

我想按住 2 单击JButton然后关闭或保持打开状态。我怎样才能保持数组或其他东西?

我的阵列持有是错误的?

使用此代码,我可以打开无限的图像,并且它们都不会关闭。

4

1 回答 1

1

我试图在数组中保存 2 个图像,如果它们不同,它将关闭它们。这是一个记忆游戏。只能打开 2 张图片

  • 将图像作为Icon/ImageIcons加载到局部变量,以避免任何 FileIO 含义代码行pressedButton.setIcon(new ImageIcon(getClass().getResource("/images/2.jpg")));

  • 将此添加Icon/ImageIconsJButton.setPressedIcon(myIcon)

  • 然后有无用的代码行重置Icon回来pressedButton.setIcon(null);

于 2013-09-23T13:03:26.220 回答