假设我有一个文件
// X.h(第一个文件)
#include <iostream>
class X{
int x;
public:
X(int i);
void print_me();
};
// X.cpp(第二个文件)
#include "X.h"
X::X(int i){x = i}
void X::print_me(){std::cout<< x << endl;}
// main.cpp(第三个文件)
#include "X.h"
void swap(int lhs, int rhs){
// do the swap
}
class Y{
X x_obj;
public:
friend void swap(Y& lhs, Y& rhs){
swap(lhs.x_obj.x, rhs.x_obj.x);
}
};
int main(){return 0;}
我的问题是: 如何在main.cpp中将Y类作为X的朋友?
我正在考虑将类Y分解为.h和.cpp文件,并将Y.h文件包含在X.h中并从那里开始。除此之外还有什么办法吗?我的意思是在代码的当前条件下使Y成为X的朋友:
我目前遇到的错误是:
> In file included from main.cpp:1:0: X.h: In function 'void swap(Y&,
> Y&)': X.h:3:9: error: 'int X::x' is private
> int x;
> ^ main.cpp:12:24: error: within this context
> swap(lhs.x_obj.x, rhs.x_obj.x);
> ^ In file included from main.cpp:1:0: X.h:3:9: error: 'int X::x' is private
> int x;
> ^ main.cpp:12:37: error: within this context
> swap(lhs.x_obj.x, rhs.x_obj.x);
答案 0 :(得分:5)
我的问题是:如何让main.cpp中的Y级成为X的朋友?
让Y
的朋友X
无法解决此问题。您需要创建类swap()
的{{1}}朋友,因为它正在尝试访问X
的私有成员。
X
请注意,您应使用远期声明,以避免将class Y; // forward declaration to avoid circular dependencies
class X{
friend void swap(Y& lhs, Y& rhs);
...
};
包含在Y.h
中,从而导致circular dependency issue。