模板类的 友元模板函数

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> &copy)
    {
        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。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值