class friend function inside a namespace(命名空间内的类友元函数)
问题描述
我试图在命名空间之外定义一个类友函数,如下所示:
Im trying to define a class friend function outside the namespace like this:
namespace A{
class window{
private:
int a;
friend void f(window);
};
}
void f(A::window rhs){
cout << rhs.a << endl;
}
我收到一个错误,说有歧义.并且有两个候选 void A::f(A::window);
和 void f(A::window)
.所以我的问题是:
Im getting an error said that there is ambiguity. and there is two candidates void A::f(A::window);
and void f(A::window)
. So my question is :
1) 如何使全局函数void f(A::window rhs)
成为A::window类的朋友.
1) How to make the global function void f(A::window rhs)
a friend of the class A::window.
(阅读答案后)
2) 为什么我需要通过 ::f(window)
将窗口类中的成员函数 f 限定为全局?
2) why do I need to qualify the member function f inside window class to be global by doing ::f(window)
?
3) 为什么在这种特殊情况下我需要预先声明函数 f(A::window) ,而当类不是在命名空间内定义时,在函数声明后声明函数是好的朋友.
3) why do I need to predeclare the function f(A::window) in this particular case, whereas when the class is not a defined inside a namespace it's okey for the function to be declared after the function is declared a friend.
推荐答案
除了添加 ::
还需要转发声明,例如:
As well as adding a ::
you need to forward declare it, e.g.:
namespace A { class window; }
void f(A::window);
namespace A{
class window{
private:
int a;
friend void ::f(window);
};
}
void f(A::window rhs){
std::cout << rhs.a << std::endl;
}
请注意,要使此前向声明起作用,您也需要前向声明类!
Note that for this forward declaration to work you need to forward declare the class too!
这篇关于命名空间内的类友元函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:命名空间内的类友元函数
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01