Java finally關(guān)鍵字
提問人:劉旭39發(fā)布時間:2020-11-30
finally關(guān)鍵字
一般在try catch代碼塊后還會緊跟著finally代碼塊。通常情況下,無論程序是否有異常,finally 代碼塊都會正常運(yùn)行。
//try catch示例,多條catch捕獲異常
public class Demo {
public static void main(String[] args) throws Exception {
try {
Class.forName("className");
} catch (Exception e) {
System.out.println("捕獲異常:" + e.getClass().getName());
System.out.println("異常內(nèi)容為:" + e.getMessage());
} finally {
System.out.println("finally 語句最后執(zhí)行");
}
}
}
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評論>>