题目内容
Given the following code:
public void test() {
try { oneMethod() ;
System. out.println("condition 1") ;
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("condition 2") ;
} catch (Exception e) {
System. out.println("condition 3") ;
} finally {
System. out.println("finally") ;
}
}
Which will display if oneMethod run normally?
查看答案
搜索结果不匹配?点我反馈