题库 软件开发 题目列表 关于以下代码的说明,正确的是( ) class Stati...
单选题
关于以下代码的说明,正确的是(
 class StaticStuff{
     static int x=10;
     static { 
            x+=5;
        }
     public static void main(String args[ ]){
         System.out.println(“x=” + x);
     }
     static { x/=3;}
 }



A.

3行与9行不能通过编译,因为缺少方法名和返回类型

B.

9行不能通过编译,因为只能有一个静态初始化器

C.

编译通过,执行结果为:x=5

D.

编译通过,执行结果为:x=3

题目信息
校招真题
-
正确率
0
评论
21
点击