现有: void topGo() { try { middleGo(); } catch (Exception e) { System.out.print("catch"); } } void middleGo() throws Exception { go(); system.out.print("late middle"); } void go() throws ExceptiOn { throw new Exception(); } 如果调用 topGo () ,则结果为:()
- A、 late middle
- B、 catch
- C、 late middle catch
- D、 catch Iate middle
正确答案:B
答案解析:有

微信扫一扫手机做题