30
क्या जावा में अंतिम ब्लॉक हमेशा निष्पादित होता है?
इस कोड को ध्यान में रखते हुए, क्या मुझे पूरा यकीन है कि finallyब्लॉक हमेशा निष्पादित होता है, कोई फर्क नहीं पड़ता कि क्या something()है? try { something(); return success; } catch (Exception e) { return failure; } finally { System.out.println("I don't know if this will get printed out"); }