- template<class T>class Friendly;
- template<class T>void f(const Friendly<T>&);
-
- template<class T> class Friendly{
- T t;
- public:
- Friendly(const T& theT):t(theT){}
- friend void f<>(const Friendly<T>&);
- void g(){f(*this);}
- };
-
- template<class T>
- void f(const Friendly<T>& fo){
- cout<<FO.T<<endl;
- }
friend template
最新推荐文章于 2023-12-19 15:21:39 发布