在oneMethod( )方法运行正常的情况下,程序段将输出( )。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.pritln( finally );}}
A.被传递的参数是变量,则为引用方式
B.被传递的参数是常量,则为传值方式
C.被传递的参数是表达式,则为传值方式
D.传值方式中形参变量值的改变不会影响实参变量的取值,引用方式则刚好相反