class BaseClass{   private float x= 1.0f;   protected void setVar (float f) {x = f;}   }   class SubClass exyends BaseClass {   private float x = 2.0f;   //insert code here  8. }   Which two are valid examples of method overriding?()

A .  Void setVar(float f) {x = f;} B .  Public void setVar(int f) {x = f;} C .  Public void setVar(float f) {x = f;} D .  Public double setVar(float f) {x = f;} E .  Public final void setVar(float f) {x = f;} F .  Protected float setVar() {x=3.0f; return 3.0f; }

时间:2022-09-28 10:20:45 所属题库:SCJP程序员认证考试题库

相似题目