问题:
public class MethodOver {
public void setVar (int a, int b, float c) {
}
}
Which two overload the setVar method?()
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, float c, int b) (return a;)
D . Public int setVar (int a, int b, float c) (return a;)
E . Protected float setVar (int a, int b, float c) (return c;)
public class MethodOver {
public void setVar (int a, int b, float c) {
}
}
Which two overload the setVar method?()
● 参考解析
本题暂无解析
相关内容
相关标签