1. 程式人生 > >finally中新增return語句

finally中新增return語句

  public static void main(String[] args) {
    try {
      System.out.println("aa:" + aa());
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

  public static int aa() throws Exception {
    for (int i = 1; i < 2; i++) {
      try {
        throw new Exception("bb");
      } catch (Exception e) {
        throw e;
      } finally {
        return 1;
      }
    }
    return 0;
  }

輸出結果:aa 1

因為finally裡面寫了return語句的時候,就會覆蓋掉try程式碼塊裡面的return。因為finally是肯定會執行的,所以,當捕捉到異常後直接丟擲異常,之後執行到finally程式碼塊,finally中把返回值給重置了,所以,返回的是1的值。