现有: <br /> void topGo()  {     <br /> try  { <br /> middleGo(); <br /> }  catch  (Exception e)  {     <br /> System.out.print("catch");     <br /> }     <br /> } <br /> void middleGo()  throws Exception  {    <br /> go(); <br /> system.out.print("late middle");    <br /> } <br /> void go()  throws ExceptiOn  {    <br /> throw new Exception();    <br /> }<br /> 如果调用 topGo () ,则结果为:() <p> 现有: <br /> void topGo()  {     <br /> try  { <br /> middleGo(); <br /> }  catch  (Exception e)  {    &ens
A、A. late middle
B、B. catch
C、C. late middle catch
D、D. catch Iate middle