[单选题]

阅读下面代码 public class Person { static int arr[]=new int[10]; public static void main(String args) { System.out.println(arr[9]); } } 该代码的运行结果是

A.编译时将产生错误

B.编译时正确,运行时将产生错误

C.输出零

D.输出空

参考答案与解析:

相关试题

阅读下列代码Public class Person{Static int arr

[单选题]阅读下列代码Public class Person{Static int arr[ ] = new int (10);Public static void main (String args ) {System.out.println(arr[9]);}}该代码运行的结果是A. )编译时将产生错误B. )编译时正确,运行时将产生错误C. )输出 0D. )输出空

  • 查看答案
  • 阅读下面代码public class Test { public static

    [单选题]阅读下面代码 public class Test { public static void main(String avgs[]) { System.out.println(89>>1); } } 其运行结果是A.44B.45C.88D.90

  • 查看答案
  • 阅读下面代码public class { public static void

    [单选题]阅读下面代码 public class { public static void main(String[] args) { double d=12.3; Decrementer dec=new Decrementer(); dec.decrement(d); System.out.println(d); } } class Decrementer { public void decrement(double decMe) { decMe=decMe-1.0; } } 代码执行后输出的结果是A.

  • 查看答案
  • 阅读下面代码public class Test { public static

    [单选题]阅读下面代码 public class Test { public static void main(String[]args) { System.out.println(2>0?10:8); } } 其运行的结果是A.2B.0C.10D.8

  • 查看答案
  • 阅读下列代码后public class Person{int arr[]=new

    [单选题]阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是( )。A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后 public class Person{ int art[]=n

    [单选题]阅读下列代码后 public class Person{ int art[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是( )。A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后public class Person{int arr[]=new

    [单选题]阅读下列代码后public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); }}正确的说法是A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后public class Person{int arr[]=new

    [单选题]阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println (arr[1]); } } 正确的说法是( )。A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后public class Person{ int arr[]=ne

    [单选题]阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下面代码abstract class Person { public Per

    [单选题]阅读下面代码 abstract class Person { public Person(String n) { name=n; } public______String getDescription(); public String getName() { return name; } private String name; } 在下画线处应填入的修饰符是A.staticB.abstractC.protectedD.final

  • 查看答案
  • 阅读下面代码public class Person { static int a