下面程序在onMethod方法运行正常的情况下将显示是( )。

Public void test(){

try {onMethod();System.out.println("情况1");}

catch(ArrayIndexOutofBoundsException e){ System.out.println("情况2 ");}

catch(Exception e){ System.out.println("情况3 ");}

finally{ System.out.println("finally");}

}
出自:石家庄铁道大学面向对象程序设计