Java.lang.System.exit() 方法

描述

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

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


声明

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

public static void exit(int status)

参数

status − 这是退出状态。


返回值

此方法不返回任何值。


异常

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


示例

下面的例子展示了 java.lang.System.exit() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

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 = ");
      System.out.print(arr2[0] + " ");
      System.out.print(arr2[1] + " ");
         System.out.println(arr2[2] + " ");
      
      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
arr2[0] = 0
arr2[1] = 10
exit...