以下输出是什么 ?class TestIt{ public static void main ( String[] args ) { int[] myArray = {1, 2, 3, 4, 5}; ChangeIt.doIt( myArray ); for(int j=0; j<myArray.length; j++) System.out.print( myArray[j] + " " ); }}class ChangeIt{ static void doIt( int[] z ) { z = null ; }}
(A)1 2 3 4 5
(B)什么都不会打印出来
(C)程序将因运行时错误而停止
(D)0 0 0 0 0
参考答案
继续答题:下一题