System.exit(-1)、System.exit(0)、System.exit(1)区别

1、源码链接

https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#exit(int)

2、说明

  • 所在包:package java.lang
  • 源码方法:
   /**
     * 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) {
        Runtime.getRuntime().exit(status);
    }

此方法用来结束当前正在运行的 Java JVM。如果 status 是非零参数,那么表示是非正常退出。

  1. System.exit(0) : 将整个虚拟机里的内容都关掉,内存都释放掉!正常退出程序。
  2. System.exit(1) : 非正常退出程序
  3. System.exit(-1) :非正常退出程序
 System.exit(0)  or EXIT_SUCCESS;  ---> Success
 System.exit(1)  or EXIT_FAILURE;  ---> Exception
 System.exit(-1) or EXIT_ERROR;    ---> Error

3、总结

  • 区别于 return : return 返回到上一层;System.exit(status) 是回到最上层。
  • System.exit(status):无论 status 为何值都会退出程序。
  • System.exit(1) :异常退出,一般放在 catch 代码块中,当捕获到异常时,停止程序。
  • System.exit(0); 整个程序正常退出
  • return:“return;” 只能直接回到上一层继续往下执行,不会直接导致整个程序的停止执行。
  • break:“break;” 只在 switch 语句体和循环体中使用,一个break;语句能退出一个 switch 语句体或循环体,即结束当前循环体。
  • continue:只在循环体应用,“continue;” 代表跳过本次循环,继续下次循环。
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐