• 2022-10-25
    下面的方法是在类中定义的重载的方法,哪几组是正确的重载方法?
    A: method1(int a);method1(float a);
    B: method2(int a);method2(int a, int b);
    C: method3(string name, double score);method3(int id, double score);
    D: method4(string name, double score);method4(string id, double credit);