基于模板参数的友元重载opearto<<常见问题

对于模板下的类定义,一般重载operator<<()用来输出类内部的信息:

我们习惯性写法:

template<typename T>
class A
{
public:
    A(string value): data(value){}
    friend ostream& operator<< (ostream & out, const A<T>& me);
private:
    T data;
};
 
template<typename T>
ostream& operator<< (ostream & out, const A<T>& me)
{
    cout << me.data << endl;
    return out;
}

GCC编译器警告:

TemplateFriendFunction.cpp:14: warning: friend declaration ‘std::ostream& operator<<(std::ostream&, const A<T>&)’ declares a non-template function
TemplateFriendFunction.cpp:14: note: (if this is not what you intended, make sure the function template has already been declared and add <> after the function name here)
出现问题的原因:定义的友元函数还是一个模版,要实例化为参数变元后才能使用

解决方法有两种:(1)把友元函数体放到类声明内部,使其跟着类的实例化一同实例化:

template<typename T>
class A
{
public:
    A(string value): data(value){}
    friend ostream& operator<< (ostream & out, const A<T>& me)
    {
        cout << me.data << endl;
        return out;
    }
private:
    T data;
};
方法(2)把友元模版放到类模版声明之上,同样在类模版参数化时附带把友元函数参数化:

template<typename T>
class A
{
public:
    A(string value): data(value){}
    friend ostream& operator<< <>(ostream & out, const A<T>& me);
private:
    T data;
};
 
template<typename T>
ostream& operator<< (ostream & out, const A<T>& me)
{
    cout << me.data << endl;
    return out;
}

注意在函数名后加上<>



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值