多项选择题

A. void setVar(float f) { x = f;}
B. public void setVar(int f) { x =f;}
C. public void setVar(float f) {return f;}
D. public double setVar(float f) {return f;}
E. protected float setVar() { x = 3.0f; return 3.0f; }