1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  1. 已答
  2. 回顾
  1. 1/15问题
    1. 问题

    以下输出是什么 ?

    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 ;
        }
    }
    
    • 1.
    • 2.
    • 3.
    • 4.