例如:
try catch之后执行代码,不管try代码块中是否出现异常:
public class Main { public static void main(String[] args) { try { int[] myNumbers = {1, 2, 3}; System.out.println(myNumbers[8]); } catch (Exception e) { System.out.println("输出异常信息等其它操作"); } finally { System.out.println("执行资源释放等相关代码"); } } }
1、定义和用法
finally
语句可以在try catch
之后执行代码,而不管是否在try代码中出现异常: