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 |
|
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。