现有: 1. void topGo() { 2. try { 3. middleGo(); 4. ) catch (Exception e) { 5. System.out.print("catch"); 6. } 7. } 8. void middleGo() throws Exception { 9. go(); 10. System.out.print("late middle"); 11. } 12. void go() throws Exception { 13. throw new Exception(); 14. } 如果调用 topGo () ,则结果为: