ماهي مخرجات output البرنامج التالي:
public class A { private void method1() throws Exception { throw new RuntimeException(); } public void method2() { try { method1(); } catch(RuntimeException e) { System.out.println("Caught Runtime Exception"); } catch(Exception e) { System.out.println("Caught Exception"); } } public static void main(String args[]) { A a = new A(); a.method2(); } }
will compile and show - "Caught Runtime Exception".
0 نعم
0 لا
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة
لم يتم إضافة هذا السؤال إلى أي قائمة دراسية خاصة بك