Java System exit() 方法



描述

java System exit() 方法终止当前正在运行的 Java 虚拟机。

参数用作状态代码;按照惯例,非零状态代码表示异常终止。

声明

以下是java.lang.System.exit() 方法的声明

public static void exit(int status)

参数

status - 这是退出状态。

返回值

此方法不返回值。

异常

SecurityException - 如果存在安全管理器并且其 checkExit 方法不允许以指定状态退出。

示例:根据条件终止程序

以下示例显示了 Java System exit() 方法的用法。在此程序中,我们创建了两个 int 类型的数组,并用一些值初始化它们。现在使用 System.arraycopy() 方法,将第一个数组 arr1 的第一个元素复制到第二个数组的索引 0 处。然后我们打印第二个数组以显示更新后的数组作为结果。在下一个 for 循环语句中,我们在检查数组元素值是否大于 20 时使用了 exit() 语句。因此,只打印了 array2 的三个元素,程序退出。

package com.tutorialspoint;

public class SystemDemo {

   public static void main(String[] args) {

      int arr1[] = { 0, 1, 2, 3, 4, 5 };
      int arr2[] = { 0, 10, 20, 30, 40, 50 };
      int i;
      
      // copies an array from the specified source array
      System.arraycopy(arr1, 0, arr2, 0, 1);
      System.out.print("array2 = ");
      for(int i= 0; i < arr2.length; i++) {
    	  System.out.print(arr2[i] + " ");
      }
      
      for(i = 0;i < 3;i++) {
         if(arr2[i] > = 20) {
            System.out.println("exit...");
            System.exit(0);
         } else {
            System.out.println("arr2["+i+"] = " + arr2[i]);
         }
      }
   }
} 

输出

让我们编译并运行以上程序,这将产生以下结果:

array2 = 0 10 20 30 40 50 60
arr2[0] = 0
arr2[1] = 10
exit...
java_lang_system.htm
广告