请问如何实现如下的代码:
class Node { protected: int x; public: Node operator + (const Node& n) { this->x += n.x; // 这里无法访问,请问有办法吗 return *this; } };