System.exit(0)vs JFrame.EXIT_ON_CLOSE

时间:2011-12-21 22:16:38

标签: java swing jframe exit

两者之间有什么区别吗?我正在阅读一篇关于你应该总是使用

的文章(http://www.javalobby.org/java/forums/t17933
System.exit(0);

目前我使用

JFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

文章说,即使对于Java Swing应用程序,您也应该添加一个监听器WindowAdapter,并在其方法System.exit()内调用windowClosing(WindowEvent e)

有什么区别吗?一种方法比另一种更好吗?

2 个答案:

答案 0 :(得分:13)

如果您查看JFrame代码,它会:

 protected void processWindowEvent(WindowEvent e) {
        super.processWindowEvent(e);

        if (e.getID() == WindowEvent.WINDOW_CLOSING) {
            switch(defaultCloseOperation) {
              ...
          case EXIT_ON_CLOSE:
                  // This needs to match the checkExit call in
                  // setDefaultCloseOperation
        System.exit(0);
        break;
            }
        }
    }

所以,它完全是一回事。我只想设置EXIT_ON_CLOSE,如果这是你想要的那样。

答案 1 :(得分:0)

好吧,考虑到System.exit(0)在JFrame编码中,要么都可以。