• 2022-06-08
    ​‏下面代码的运行结果为:( )‏​‏public class Qlac{static String arr[] = new String[5];public static void main(String args[ ]) {System.out.println(arr[1]);}}
    A: 编译正确,运行时将产生错误
    B: 输出0
    C: 输出null
    D: 编译时将产生错误
  • C

    内容

    • 0

      下列代码,哪一个说法是正确的()public class Test{ public static void main(String args[]){ int arr[]=new int[10]; System.out.println(arr[1]); }} A: 产生编译错误 B: 输出null C: 能正确编译,但运行时发生异常 D: 输出:0

    • 1

      关于下面代码的说法()是正确的?public class Example{public static void main(String[] args){int[] arr= new int[10];System.out.println(arr[1]);}} A: 编译时产生错误 B: 编译时正确,运行时将产生错误 C: 输出零 D: 输出空(null)

    • 2

      ‎下列程序的运行结果是______。‏public class Person {‏static int arr[ ]=new int[10];‏public static void main(String args ) {‏ System.out.println(arr[9]);‏}‏}‏ A: 输出零 B: 编译时正确,运行时将产生错误 C: 输出空 D: 编译时将产生错误

    • 3

      给出下面代码: public class Person{ static int arr[] = new int[10] public static void main(String a[]){ System.out.println(arr[1]) } } 哪个语句是正确的? A: 编译时将产生错误 B: 输出零 C: 编译时正确,运行时将产生错误 D: 输出空

    • 4

      关于以下代码段的运行结果,说法正确的是( )static int arr[] = new int[5];public static void main(String a[]){System.out.println(arr[0]);} A: 输出0 B: 输出null C: 编译时报错 D: 编译时正确,运行时产生错误