logo

Metoda exit() systému Java

Metoda exit() třídy System ukončí aktuální virtuální stroj Java běžící na systému. Tato metoda bere jako argument stavový kód.

    Poznámka:Stav - exit(0) - označuje úspěšné ukončení
  • Stav - exit(-1) - označuje neúspěšné ukončení s výjimkou
  • Stav - exit(1) - označuje Neúspěšné ukončení

Syntax

 public static void exit(int status) 

Parametr

postavení - Je to výstupní stav.

kdy byla vynalezena škola

Návraty

Tato metoda nevrací žádnou hodnotu.

Výjimka

Pokud existuje správce zabezpečení a jeho metoda checkexit neschválí ukončení se specifikovaným stavem, pak a SecurityException je trn.

Příklad 1

 import java.lang.*; public class SystemExitExample1 { public static void main(String[] args) { int a[]= {9,8,7,6,5,4,3,2,1}; for(int i=0;i5) { System.out.println('array['+i+']='+a[i]); } else { System.out.println('terminating jvm,exiting'); System.exit(0);//Treminatejvm } } } } 
Otestujte to hned

Výstup:

 array[0]=9 array[1]=8 array[2]=7 array[3]=6 terminatingjvm,exiting 

Příklad 2

 public class SystemExitExample2 { public static void main(String[] args) { System.out.println('program will terminate when i is 1'); for(int i=10;i>0;i--) { System.out.println('your no is '+i); if(i==1){ System.out.println('Value is 1 now terminating your program'); System.exit(1); //exit program } } } } 
Otestujte to hned

Výstup:

 program will terminate when i is 1 your no is 10 your no is 9 your no is 8 your no is 7 your no is 6 your no is 5 your no is 4 your no is 3 your no is 2 your no is 1 Value is 1 now terminating your program