• 2022-06-09
    给出下列代码:public class ArrayTest{static int arr[] = new int[10];public static void main(String args[]) { System.out.println(arr[1]); }}下列哪个结论是正确的?( )
    A: 编译时将产生错误
    B: 编译时正确,运行时将产生错误
    C: 输出零
    D: 输出空
  • 举一反三