class Birds { <br /> public static void main(String [] args) { <br /> try { <br /> throw new Exception(); <br /> } catch (Exception e) {<br /> try { <br /> throw new Exception(); <br /> } catch (Exception e2) { System.out.print("inner "); } <br /> System.out.print("middle ");<br /> } <br /> System.out.print("outer "); <br /> } <br /> } <br /> 结果为:()  <p> class Birds { <br /> public static void main(String [] args) { <br /> try { <br /> throw new Exception(); <br /> } catch (Exception e) {<br /> try { <br /> throw new Exception(); <br /> } catch (Exception e2) { System.out.print("inner "); } <b
A、A.inner
B、B.inner outer
C、C.middle outer
D、D.inner middle outer