• 2022-06-08
    分析下列代码:[br][/br] public class Test { public static void main(String[ ] args) { int[ ] x = new int[3]; System.out.println("x[0] is " + x[0]); } }
    A: 程序运行正常,显示x[0]为0。
    B: 程序有一个运行时错误,因为数组元素没有初始化。
    C: 由于未定义数组元素x[0],程序出现运行时错误。
    D: 程序有一个编译错误,因为在声明数组时未指定数组的大小。
  • 举一反三