正在关闭Java框架



我创建了一个java游戏,并实现了一个GameOver方法。这是我为game over方法编写的代码:

public void gameOver() throws IOException {
   String message = "Game, Want to try Again?";
   String title = "Game Over";
   int reply = JOptionPane.showConfirmDialog(frame, message, title, JOptionPane.YES_NO_OPTION);
    if (reply == JOptionPane.YES_OPTION){
        new Game();
    } else {
        this.getSoundEffect().stopAllMusic();
        new Main().setVisible(true);
    }
}

我遇到的问题是关闭原始框架。例如,如果我点击"是",游戏框架将打开,然而,它已经打开了,所以我将有两个游戏实例工作。

只是让你们知道,我已经尝试了以下选项:

    frame.dispose();
    WindowEvent wev = new WindowEvent(this, WindowEvent.WINDOW_CLOSING);
    Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(wev);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

我也在考虑做一个actionperformed事件,然而,由于JOptionPane是一个int,我无法。

你的gameOver方法应该是这样的:

Main mMain ;
public void gameOver() throws IOException {
   String message = "Game, Want to try Again?";
   String title = "Game Over";
   int reply = JOptionPane.showConfirmDialog(frame, message, title, JOptionPane.YES_NO_OPTION);
    if (reply == JOptionPane.YES_OPTION){
        frame.dispose();
        frame.setVisible(true);
    } else {
        this.getSoundEffect().stopAllMusic();
        if(mMain==null)
        {
          mMain = new Main();
        }
        mMain.setVisible(true);
    }
}

编辑

除了所有这些,你有两个变量名为frame第一个是实例变量frame = new JFrame("Game");final JFrame frame = new JFrame("The Birds Game");你应该改变其他JFrame的变量名称…

相关内容

  • 没有找到相关文章

最新更新