تنهي طريقة الخروج () لفئة النظام جهاز Java الظاهري الحالي الذي يعمل على النظام. تأخذ هذه الطريقة رمز الحالة كوسيطة.
- الحالة - خروج (-1) - تشير إلى الإنهاء غير الناجح مع الاستثناء
- الحالة - الخروج (1) - تشير إلى الإنهاء غير الناجح
بناء الجملة
public static void exit(int status)
معامل
حالة - إنها حالة الخروج.
عائدات
هذه الطريقة لا ترجع أي قيمة.
استثناء
إذا كان مدير الأمان موجودًا ولم توافق طريقة التحقق من الخروج الخاصة به على الخروج بالحالة المحددة، فحينئذٍ أ استثناء أمان هو شوكة.
مثال 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 } } } }اختبره الآن
انتاج:
array[0]=9 array[1]=8 array[2]=7 array[3]=6 terminatingjvm,exiting
مثال 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 } } } }اختبره الآن
انتاج:
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