属性初始化值

         
 
16. Given the following code: public class Test{ static long a[] = new long[10]; public static void main ( String arg[] ) { System.out.println ( a[6] ); } } Which statement is true? 下面关于long数组的代码运行结果是什么?
 
备选答案: A : Output is null.
B : Output is 0.
C : When compile, some error will occur.
D : When running, some error will occur.
你的回答: D
回答结果:
答案: B
答案详解: 类一级的属性会被自动初始化。 主类型中数字默认为0,boolen默认为false 对象则默认为null.

你可能感兴趣的:(c,String,Class,output)