logo

Metoda Java System exit().

Metoda exit() razreda System prekine trenutni navidezni stroj Java, ki se izvaja v sistemu. Ta metoda vzame statusno kodo kot argument.

    Opomba:Status - izhod(0) - označuje uspešno prekinitev
  • Status - izhod(-1) - označuje neuspešno prekinitev z izjemo
  • Status - izhod(1) - označuje neuspešno prekinitev

Sintaksa

 public static void exit(int status) 

Parameter

stanje - To je izhodni status.

Vračila

Ta metoda ne vrne nobene vrednosti.

Izjema

Če varnostni upravitelj obstaja in njegova metoda preverjanja izhoda ne odobri izhoda z določenim statusom, potem a SecurityException je trn.

Primer 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 } } } } 
Preizkusite zdaj

Izhod:

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

Primer 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 } } } } 
Preizkusite zdaj

Izhod:

 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