logo

Java System exit() metódus

A System osztály exit() metódusa leállítja a rendszeren futó Java virtuális gépet. Ez a metódus az állapotkódot veszi argumentumként.

    Jegyzet:Állapot - kilépés(0) - Sikeres befejezést jelez
  • Állapot - kilépés (-1) - sikertelen megszüntetést jelez kivétellel
  • Állapot - kilépés(1) - Sikertelen befejezést jelez

Szintaxis

 public static void exit(int status) 

Paraméter

állapot - Ez a kilépési állapot.

Visszatér

Ez a metódus nem ad vissza semmilyen értéket.

Kivétel

Ha létezik biztonsági menedzser, és a checkexit metódusa nem hagyja jóvá a megadott állapotú kilépést, akkor a Biztonsági kivétel van tövis.

1. példa

 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 } } } } 
Tesztelje most

Kimenet:

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

2. példa

 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 } } } } 
Tesztelje most

Kimenet:

 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