如果class member的定义在class body之外, 那么从该定义的member名称开始出现到定义结束为止,都属于class scope,但是前边的返回类型不属于class scope。如:

typedef int Type;
Type initVal();

class Exercise
{
public:
    typedef double Type;
    Type setVal(Type);
    Type initVal(){return 0;};
private:
    int val;
};

Type/*此处的Type为全局里面定义的int*/ Exercise::setVal(Type parm)                //error: prototype for 'Type Exercise::setVal(double)' does not match any in class 'Exercise'

{                                                                                                                            //candidate is: double Exercise::setVal(double)|
    val = parm+initVal();

}


或者修改定义Type 为 Exerci::Type, 或者修改类里面的member声明的Type为::Type。

相关文章:

  • 2021-05-21
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2021-07-28
  • 2021-12-23
  • 2021-06-15
  • 2022-12-23
猜你喜欢
  • 2021-06-23
  • 2021-10-14
  • 2021-11-14
  • 2022-12-23
  • 2021-08-27
  • 2021-09-30
  • 2022-01-01
相关资源
相似解决方案