class Flow { <br /> public static void main(String [] args) { <br /> try { <br /> System.out.print("before "); <br /> doRiskyThing(); <br /> System.out.print("after "); <br /> } catch (Exception fe) { <br /> System.out.print("catch "); <br /> } <br /> System.out.println("done "); <br /> } <br />  public static void doRiskyThing() throws Exception { <br /> // this code returns unless it throws an Exception <br /> } } <br /> 可能会产生下面哪两项结果?() <p> class Flow { <br /> public static void main(String [] args) { <br /> try { <br /> System.out.print("before "); <br /> doRiskyThing(); <br /> System.out.print("after ");&ensp
A、A.before
B、B.before catch
C、C.before after done
D、D.before catch done