现有代码如下: 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