无法访问类中声明的私有成员

Fil*_*uzi 0 c++ private class visual-studio-2010

我有一段代码,它是方法定义

Move add(const Move & m) {
    Move temp;
    temp.x+= (m.x +this-x);
    temp.y+= (m.y + this->y);
    return temp;
}
Run Code Online (Sandbox Code Playgroud)

这是类声明

class Move
{
private:
    double x;
    double y;
public:
    Move(double a=0,double b=0);
    void showMove() const;
    Move add(const Move & m) const;
    void reset(double a=0,double b=0);
};
Run Code Online (Sandbox Code Playgroud)

它说

1>c:\users\filip\dysk google\c++\consoleapplication9\move.cpp(18): error C2248: 'Move::x' : cannot access private member declared in class 'Move'
1>          c:\users\filip\dysk google\c++\consoleapplication9\move.h(7) : see declaration of 'Move::x'
1>          c:\users\filip\dysk google\c++\consoleapplication9\move.h(5) : see declaration of 'Move'
1>          c:\users\filip\dysk google\c++\consoleapplication9\move.h(7) : see declaration of 'Move::x'
1>          c:\users\filip\dysk google\c++\consoleapplication9\move.h(5) : see declaration of 'Move'
1>c:\users\filip\dysk google\c++\consoleapplication9\move.cpp(18): error C2355: 'this' : can only be referenced inside non-static member functions
1>c:\users\filip\dysk google\c++\consoleapplication9\move.cpp(18): error C2227: left of '->x' must point to class/struct/union/generic type
Run Code Online (Sandbox Code Playgroud)

和Move :: y相同.Any1有什么想法吗?

jua*_*nza 7

您需要addMove类范围中定义:

Move Move::add(const Move & m) const {
    Move temp;
    temp.x+= (m.x +this-x);
    temp.y+= (m.y + this->y);
    return temp;
}
Run Code Online (Sandbox Code Playgroud)

否则,它被解释为非成员函数,无法访问Move非公共成员.

请注意,您可以简化代码,假设有两个参数构造函数集,x并且y:

Move Move::add(const Move & m) const {
    return Move(m.x + this-x, m.y + this->y);
}
Run Code Online (Sandbox Code Playgroud)