标签:异常 ret divide 结果 创建 代码块 public finally turn
try{ //可能发生异常的代码块 }catch(ExceptionName1 e1){ // 出异常时候处理 }catch(ExceptionName2 e2){ // 出异常时候处理 }
try{ // 可能发生异常的代码 }catch(Exception e){ // 出现异常时的处理 }finally{ //肯定执行的代码 }
try{ // 可能发生异常的代码块 }finally{ // 肯定执行的代码 }
public static int divide(int num1, int num2) { try { int result = num1 / num2; return result; } catch (Exception e) { System.out.println("出异常了......"); } finally { System.out.println("finally代码块被执行了......"); return -2; }
标签:异常 ret divide 结果 创建 代码块 public finally turn
原文地址:https://www.cnblogs.com/mrchenyushen/p/15028211.html