模板类中的友元函数
Posted ya-cpp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板类中的友元函数相关的知识,希望对你有一定的参考价值。
friend ostream& operator<< <T>(ostream &out, Complex &c);
template <typename T>
ostream& operator<<(ostream &out, Complex<T> &c)
{
out << c.a << " " << c.b << endl;
return out;
}
以上是关于模板类中的友元函数的主要内容,如果未能解决你的问题,请参考以下文章