今天发现异常的一个问题,求权威解释~
public static int test() { int i = 0; try { fun1(); fun2(); i = -1; System.out.println("try end"); return i; } catch (Exception e) { System.out.println("catch"); i = -2; return i; } finally { i = 1; System.out.println("finally"); } }