A. Super->print B. Test->print C. Super->print Test->print D. 编译错误
A. 方法重载和方法重写实现的功能相同 B. 方法重载出现在父子关系中,方法重写是在同一类中 C. 方法重载的返回类型必须一致,参数项必须不同 D. 方法重写需要出现在满足继承关系的子类中
A. public static void bark(){} B. public final void display(){} C. public void eat(String food){} D. public boolean eat(String food){}
A. public float getNum() { return 4.0f; } B. private float getNum() {return 4.0f;} C. public float getNum(){return 5.0f;} D. public float getNum(float d){ return 4.0; }
A. 编译错误:没有找到构造器Child() B. 编译错误:没有找到构造器Parent1() C. 正确运行,没有输出值 D. 正确运行,输出结果为:parent2