我在命名空间中有一个类,如下所示。 的 test.h
#include <iostream>
using std::cout;
namespace n1
{
class myClass;
}
class n1::myClass
{
public:
myClass(int na, int nb):a(na), b(nb){}
private:
int a;
int b;
friend std::ostream& operator << (std::ostream & stream, const n1::myClass& cls);
};
TEST.CPP
#include "test.h"
std::ostream& operator << (std::ostream & str, const n1::myClass& cls)
{
str << cls.a << " " << cls.b << std::endl;
}
在编译时,我收到以下错误。
test.h: In function ‘std::ostream& operator<<(std::ostream&, const n1::myClass&)’:
test.h:13:6: error: ‘int n1::myClass::a’ is private
test.cpp:5:13: error: within this context
test.h:14:6: error: ‘int n1::myClass::b’ is private
test.cpp:5:29: error: within this context
如何解决错误?
答案 0 :(得分:2)
您可以在名称空间<<
中定义运算符myClass
:
namespace n1
{
std::ostream& operator << (std::ostream & str, const myClass& cls)
{
str << cls.a << " " << cls.b << std::endl;
}
}
因为您承诺myClass
在名称空间n1
中有一个朋友,但您实际上是在全局名称空间中声明运算符。