我有这样的代码:
template <typename T, typename U> struct MyStruct {
T aType;
U anotherType;
};
class IWantToBeFriendsWithMyStruct
{
friend struct MyStruct; //what is the correct syntax here ?
};
为模板提供友谊的正确语法是什么?
答案 0 :(得分:18)
class IWantToBeFriendsWithMyStruct
{
template <typename T, typename U>
friend struct MyStruct;
};
在VS2008中工作,并允许MyStruct访问该类。
答案 1 :(得分:7)
根据this site,正确的语法是
class IWantToBeFriendsWithMyStruct
{
template <typename T, typename U> friend struct MyStruct;
}