(7-1)定义了如下的Father类和Derived类,则下面()语句是正确的。abstractclassFather{publicabstractvoidcall();}classDerivedextendsFather{publicvoidcall(){}}
A. FatherObj=newDerived();
B. DerivedObj=newFather();
C. FatherObj=newFather();
DerivedObj=newDerived();
查看答案
(7-1)如果定义的类没有使用extends关键字继承父类,则默认()类是该类的父类。
(7-1)在设计新类时,为了使类具有较强的扩展性,最好重写()和()方法(仅写方法名)。
(7-1)如果类P继承了类Q,则称类P为()类,称类Q为()类。
(7-1)当子类的成员变量与父类的成员变量同名时,子类的成员变量将()父类的成员变量。