问题:
class Flow {
public static void main(String [] args) {
try {
System.out.print("before ");
doRiskyThing();
System.out.print("after ");
} catch (Exception fe) {
System.out.print("catch ");
}
System.out.println("done ");
}
public static void doRiskyThing() throws Exception {
// this code returns unless it throws an Exception
} }
可能会产生下面哪两项结果?()
A . before
B . before catch
C . before after done
D . before catch done
class Flow {
public static void main(String [] args) {
try {
System.out.print("before ");
doRiskyThing();
System.out.print("after ");
} catch (Exception fe) {
System.out.print("catch ");
}
System.out.println("done ");
}
public static void doRiskyThing() throws Exception {
// this code returns unless it throws an Exception
} }
可能会产生下面哪两项结果?()
● 参考解析
本题暂无解析
相关内容
相关标签