问题及代码:
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称: 实现复数类中的运算符重载 .cpp
*作 者:白云飞
*完成日期:2015年4月25日
*版 本 号:v1.0
*
*问题描述:定义一个定义完整的类,扩展+、-、*、/运算符的功能,使之能与double型数据进行运算。设Complex c; double d; c+d和d+c的结果为“将d视为实部为d的复数同c相加”,其他-、*、/运算符类似。
*程序输入:无
*程序输出:运算结果
*/
#include<iostream>
using namespace std;
class Complex
{
public:
Complex()
{
real=0;
imag=0;
}
Complex(double r,double i)
{
real=r;
imag=i;
}
friend Complex operator+(const Complex &c1,const Complex &c2);
friend Complex operator+(double d1,const Complex &c2);
friend Complex operator+(const Complex &c1,double d2);
friend Complex operator-(const Complex &c1,const Complex &c2);
friend Complex operator-(double d1,const Complex &c2);
friend Complex operator-(const Complex &c1,double d2);
friend Complex operator*(const Complex &c1,const Complex &c2);
friend Complex operator*(double d1,const Complex &c2);
friend Complex operator*(const Complex &c1,double d2);
friend Complex operator/(const Complex &c1,const Complex &c2);
friend Complex operator/(double d1,const Complex &c2);
friend Complex operator/(const Complex &c1,double d2);
void display();
private:
double real;
double imag;
};
//下面定义成员函数
Complex operator+(const Complex &c1,const Complex &c2)
{
Complex c;
c.real=c1.real+c2.real;
c.imag=c1.imag+c2.imag;
return c;
}
Complex operator+(double d1,const Complex &c2)
{
Complex c(d1,0);
return c+c2;
}
Complex operator+(const Complex &c1,double d2)
{
Complex c(d2,0);
return c1+c;
}
Complex operator-(const Complex &c1,const Complex &c2)
{
Complex c;
c.real=c1.real-c2.real;
c.imag=c1.imag-c2.imag;
return c;
}
Complex operator-(double d1,const Complex &c2)
{
Complex c(d1,0);
return c-c2;
}
Complex operator-(const Complex &c1,double d2)
{
Complex c(d2,0);
return c1-c;
}
Complex operator*(const Complex &c1,const Complex &c2)
{
Complex c;
c.real=c1.real*c2.real-c1.imag*c2.imag;
c.imag=c1.imag*c2.real+c1.real*c2.imag;
return c;
}
Complex operator*(double d1,const Complex &c2)
{
Complex c(d1,0);
return c*c2;
}
Complex operator*(const Complex &c1,double d2)
{
Complex c(d2,0);
return c1*c;
}
Complex operator/(const Complex &c1,const Complex &c2)
{
Complex c;
c.real=(c1.real*c2.real+c1.imag*c2.imag)/(c2.real*c2.real+c2.imag*c2.imag);
c.imag=(c1.imag*c2.real-c1.real*c2.imag)/(c2.real*c2.real+c2.imag*c2.imag);
return c;
}
Complex operator/(double d1,const Complex &c2)
{
Complex c(d1,0);
return c/c2;
}
Complex operator/(const Complex &c1,double d2)
{
Complex c(d2,0);
return c1/c;
}
void Complex::display()
{
cout<<"("<<real<<","<<imag<<"i)"<<endl;
}
//下面定义用于测试的main()函数
int main()
{
double d=1;
cout<<"d="<<d<<endl;
Complex c1(3,4),c2(5,-10),c3;
cout<<"c1=";
c1.display();
cout<<"c2=";
c2.display();
c3=c1+c2;
cout<<"c1+c2=";
c3.display();
cout<<"c1+d=";
(c1+d).display();
cout<<"d+c1=";
(d+c1).display();
c3=c1-c2;
cout<<"c1-c2=";
c3.display();
cout<<"c1-d=";
(c1-d).display();
cout<<"d-c1=";
(d-c1).display();
c3=c1*c2;
cout<<"c1*c2=";
c3.display();
cout<<"c1*d=";
(c1*d).display();
cout<<"d*c1=";
(d*c1).display();
c3=c1/c2;
cout<<"c1/c2=";
c3.display();
cout<<"c1/d=";
(c1/d).display();
cout<<"d/c1=";
(d/c1).display();
return 0;
}
运行结果:
学习心得:
添加double型数据进行运算时,重复写了很多遍友元函数,看见贺老的博客,才知道自己写的太繁琐了。