現(xiàn)有:
class Birds {
public static void main (String [] args) {
try {
throw new Exception () ;
} catch (Exception e) {
try {
throw new Exception () ;
} catch (Exception e2) { System.out.print ("inner "); }
System. out.print ( "middle" ) ;
}
System.out.print ("outer") ;
}
}
結(jié)果是()
A. inner outer
B. middle outer
C. inner middle outer
D..編譯失敗