单选题:Suppose that statement2 throws an exception of type Exception2 i
Suppose that statement2 throws an exception of type Exception2 in the following statement: @[D](2)
try {
statement1;
statement2;
statement3;
}
catch (Exception1 ex1)
{
}
catch (Exception2 ex2)
{
}
catch (Exception3 ex3)
{
statement4;
throw;
}
statement5;
A. statement2
B. statement3
C. statement4
D. statement5
A.statement2
B.statement3
C.statement4
D.statement5
答案:D
try {
statement1;
statement2;
statement3;
}
catch (Exception1 ex1)
{
}
catch (Exception2 ex2)
{
}
catch (Exception3 ex3)
{
statement4;
throw;
}
statement5;
A. statement2
B. statement3
C. statement4
D. statement5
A.statement2
B.statement3
C.statement4
D.statement5
答案:D