1.參考文獻
http://hi.baidu.com/accpzhangbo/blog/item/52aeffc683ee6ec238db4965.htmlhtml
2.解析
查看Java.lang.System的源代碼,咱們能夠找到System.exit(status)這個方法的說明,代碼以下:java
[java] view plain copyapp
- /**
- * Terminates the currently running Java Virtual Machine. The
- * argument serves as a status code; by convention, a nonzero status
- * code indicates abnormal termination.
- * <p>
- * This method calls the <code>exit</code> method in class
- * <code>Runtime</code>. This method never returns normally.
- * <p>
- * The call <code>System.exit(n)</code> is effectively equivalent to
- * the call:
- * <blockquote><pre>
- * Runtime.getRuntime().exit(n)
- * </pre></blockquote>
- *
- * @param status exit status.
- * @throws SecurityException
- * if a security manager exists and its <code>checkExit</code>
- * method doesn't allow exit with the specified status.
- * @see java.lang.Runtime#exit(int)
- */
- public static void exit(int status) {
- untime.getRuntime().exit(status);
- }
註釋中說的很清楚,這個方法是用來結束當前正在運行中的java虛擬機。如何status是非零參數,那麼表示是非正常退出。ui
- System.exit(0)是將你的整個虛擬機裏的內容都停掉了 ,而dispose()只是關閉這個窗口,可是並無中止整個application exit() 。不管如何,內存都釋放了!也就是說連JVM都關閉了,內存里根本不可能還有什麼東西
- System.exit(0)是正常退出程序,而System.exit(1)或者說非0表示非正常退出程序
- System.exit(status)無論status爲什麼值都會退出程序。和return 相比有如下不一樣點: return是回到上一層,而System.exit(status)是回到最上層
3.示例
在一個if-else判斷中,若是咱們程序是按照咱們預想的執行,到最後咱們須要中止程序,那麼咱們使用System.exit(0),而System.exit(1)通常放在catch塊中,當捕獲到異常,須要中止程序,咱們使用System.exit(1)。這個status=1是用來表示這個程序是非正常退出。spa