下面语句运行结果为( )。switch(5){ default: System.out.print(5); case 3: System.out.print(3); case 1: System.out.print(1); break; }
查看答案
下列语句中,( )可用来访问父类被隐藏的成员变量。
A. this.variable
B. super. variable
C. super.Method
D. super()
下列关于构造方法说法正确的是( )。
A. 不能重写可重载
B. 不能重载可重写
C. 不能重载不能重写
D. 可重写也可重载
定义抽象类时能使用的修饰符是( )。
A. static
B. private
C. abstract
D. protected
下列哪个数组声明是非法的( )。
A. int[][]t=new int[4][4]
B. int [][]t=new int[5][]
C. int [][] t=new int[] [4] int[]t[]=new int[4][]