當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.System.exit()用法及代碼示例



描述

這個java.lang.System.exit() 方法終止當前運行的 Java 虛擬機。

該論證作為status代碼;按照慣例,非零狀態代碼表示異常終止。

聲明

以下是聲明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...

相關用法


注:本文由純淨天空篩選整理自 Java.lang.System.exit() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。