今天组里有位同学说 try里面不能嵌套try 很诧异
可行代码
try { System.out.println("aa");try { } catch (Exception e) { System.out.println("aaa"); } } catch (Exception e) { System.out.println("aa"); }
不可行代码
try { System.out.println("aa"); return 9; try { } catch (Exception e) { // TODO: handle exception } } catch (Exception e) { System.out.println("aa"); }