给定如下Java代码,不可以填入下划线处的语句是()public interface Shape{}class TwoDemension implements Shape{}class Circle extends TwoDemension {}class Triangle extends TwoDemension {}public class Test{public static void main(String[] args) {________}}
A. Shape shape=new Shape();
B. TwoDemension circle =new Circle ();
C. Shape shape =new TwoDemension();
D. TwoDemension triangle =new Triangle ();
查看答案
下面的Java代码,可以填入下划线处的语句是( )public interface Constants{int MAX=50;int MIN=1;}public class Test{public static void main(String[] args) {______}}
A. Constants con=new Constants();
B. Constants.MAX=100
C. int i=Constants.MAX-Constants.MIN
D. Constants.MIN>0
能够用来修饰interface的有()
A. private
B. public
C. protected
D. static
Java中,一个类中可以定义多个同名方法,这些方法的形式参数的个数、类型或顺序各不相同,传回的值也可以不相同。这种面向对象程序特性称为()
A. 封装
B. 继承
C. 覆盖
D. 重载
类Test定义如下(1)public class Test{(2)public float aMethod(float a, float b){ }(3)(4) }将以下哪种方法插入行(3)是不合法的()
A. public float aMethod(float a, float b,float c){ }
B. public float aMethod(float c,float d){ }
C. public int aMethod(int a, int b){ }
D. private float aMethod(int a,int b,int c){ }