現(xiàn)有:
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