作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
template<typename T>
class A
{
friend class T;
int n;
};
struct B
{
B()
{
A<B>{}.n;
// error : 'n' is a private member of 'A<B>'
}
};
为什么模板类型不能成为 C++ 中的友元类?
最佳答案
通过使用关键字class
,您可以向前声明一个名为T
的新类型;它不引用模板参数 T
。 (它实际上隐藏了模板参数 T
。)
只需删除关键字class
,友元声明就不会转发声明新类型。
template<typename T>
class A
{
friend T;
int n;
};
This usage (friend
simple-type-specifier; friend
typename-specifier;) 从 C++11 开始引入。
关于c++ - 为什么模板类型不能成为 C++ 中的友元类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52236935/
我是一名优秀的程序员,十分优秀!