首页 > 代码库 > C++学习笔记(一)模板类的友元模板函数Boolan
C++学习笔记(一)模板类的友元模板函数Boolan
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include<iostream> #include<string> using namespace std; template < class T> class Test; template < class T> ostream& operator<<(ostream& out, const Test<T> &obj); template < class T> class Test { private : int num; public : Test( int n=0) { num = n; } Test( const Test <T> ©) { num = copy.num; } //‘<<‘后面加上‘<>‘表明这个函数是个函数模板 friend ostream& operator<< <>(ostream& out, const Test<T> &obj); }; template < class T> ostream& operator<<(ostream& out, const Test<T> &obj) { cout << obj.num << endl; return out; } int main() { Test< int > t(2); cout << t << endl; getchar (); return 0; } |
1)需要注意的是,template<class T>究竟哪里应该出现,哪里不应该出现。
2)需要重点注意的是添加注释的行,
1: friend ostream& operator<< <>(ostream& out, const Test<T> &obj);
此行不可也写成,
1: friend template<class T> ostream& operator<< <>(ostream& out, const Test<T> &obj);
写成这样也不可,
1: friend template<class T> ostream& operator<<(ostream& out, const Test<T> &obj);
总之,唯一正确的写法就是代码段中的写法。<>也必不可少,其实<>有两重意思,一是,表明此友元函数是函数模板;二是,此模板使用的模板类型参数为当前模板类的类型参数class T。
C++学习笔记(一)模板类的友元模板函数Boolan
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。