下面程序输出的结果是什么 ( ) public class Quiz2 {public static void main(String args[]){ try {throw new MyException(); }catch(Exception e) { System.out.println("It’s caught!"); }finally{ System.out.println("It’s finally caught!"); }} } class MyException extends Exception{}
A.It’s finally caught!
B.It’s caught!
C.It’s caught!/It’s finally caught!
D.无输出