目前以下代码不工作:
namespace inner
{
struct Test
{
Test() : n(0) { }
friend int ::operator+(const Test& a, const Test& b);
private:
int n;
};
}
int operator+(const inner::Test& a, const inner::Test& b)
{
return a.n + b.n;
}
我得到的错误是
error: 'int operator+(const inner::Test&, const inner::Test&)' should have been declared inside '::'
friend int ::operator+(const Test& a, const Test& b);
^
我认为限定命名空间可以解决问题,但事实并非如此。有什么解决方法?
友元声明只能将名称引入紧邻的命名空间。
如果你想在任何其他命名空间中成为一个函数的友元,那么你需要在友元声明之前在其命名空间中声明该函数。如错误消息所述。
在这种情况下,您可能希望运算符位于 inner
而不是全局命名空间。依赖于参数的查找仍会在类似 test_a + test_b
的表达式中找到它,即使它不在其他范围内也是如此。
我是一名优秀的程序员,十分优秀!