【单选题】根据重载的定义,已知方法public void setVar (int a, int b, float c) { },下列哪个选项与此方法符合方法重载( )。
A.
private void setVar (int a, float c, int b) { }
B.
protected void setVar (int a, int b, float c) { }
C.
public int setVar (int a, int b, float c) {return a;}
D.
protected float setVar (int a, int b, float c) {return c;}