试题详情

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

A编译时将产生错误

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

C输出0

D输出空