单选题

现有代码如下: public class Example { void topGo() { try { middleGo(); } catch (Exception e) { System.out.println("catch"); } } void middleGo() throws Exception { go(); System.out.println("late middle"); } void go() throws Exception { throw new Exception(); } public static void main(String[] args) { Example example = new Example(); example.topGo(); } } 该代码的执行结果是?

发布于 2020-12-25 22:05:48

登录后免费查看答案
关注者
0
被浏览
33
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看