两者之间有什么区别。我正在阅读有关您应始终使用的文章(http://www.javalobby.org/java/forums/t17933)

System.exit(0);

目前我使用
JFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

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

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

最佳答案

如果您查看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。

10-05 21:15