-->
当前位置:首页 > 题库

单选题:Suppose that statement2 throws an exception of type Exception2 i

Luz5年前 (2021-05-10)题库1210
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