问题及代码:
/*。
*Copyright(c)2014,烟台大学计算机学院
*All right reserved,
*文件名:test.cpp
*作者:liu_feng_zi_
*完成日期:2015年4月18日
*版本号:v1.0
*问题描述:友元函数提供了一种非成员函数访问私有数据成员的途径,
模板类使类中的数据成员的类型变得灵活,这两种技术可以结合起来用。
要求在前面方案的基础上支持用友员函数实现的加法。
*输入描述:
*程序输出:
*/
#include <iostream>
using namespace std;
template <class numtype>
class Complex
{
public:
Complex()
{
real=0;
imag=0;
}
Complex(numtype r,numtype i)
{
real=r;
imag=i;
}
Complex complex_add(Complex &c2);
template <class numtype2>friend Complex<numtype2> add_complex(Complex<numtype2> &c1,Complex<numtype2> &c2);
void display();
private:
numtype real;
numtype imag;
};
template <class numtype>
Complex<numtype> Complex<numtype>::complex_add(Complex &c2)
{
Complex c;
c.real=real+c2.real;
c.imag=imag+c2.imag;
return c;
}
template <class numtype2>
Complex<numtype2> add_complex(Complex<numtype2> &c1,Complex<numtype2> &c2)
{
Complex<numtype2> c;
c.real=c1.real+c2.real;
c.imag=c1.imag+c2.imag;
return c;
}
template <class numtype>
void Complex<numtype>::display()
{
cout<<"("<<real<<","<<imag<<"i)"<<endl;
}
int main( )
{
Complex<int> c1(3,4),c2(5,-10),c3;
c3=c1.complex_add(c2); //调用成员函数支持加法运算,有一个形参
cout<<"c1+c2=";
c3.display( );
Complex<double> c4(3.1,4.4),c5(5.34,-10.21),c6;
c6=c4.complex_add(c5); //调用成员函数支持加法运算,有一个形参
cout<<"c4+c5=";
c6.display( );
Complex<int> c7;
c7=add_complex(c1,c2); //调用友员函数支持加法运算,有两个形参
cout<<"c1+c2=";
c7.display( );
Complex<double> c8;
c8=add_complex(c4,c5); //调用友员函数支持加法运算,有两个形参
cout<<"c4+c5=";
c8.display( );
return 0;
}
运行结果: