C++中的复数类.doc

C++中的复数类.doc

ID:48501473

大小:44.50 KB

页数:15页

时间:2020-02-05

C++中的复数类.doc_第1页
C++中的复数类.doc_第2页
C++中的复数类.doc_第3页
C++中的复数类.doc_第4页
C++中的复数类.doc_第5页
资源描述:

《C++中的复数类.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、......C++中的复数类//类的定义(mycomplex.h)#include#ifndefmycomplex_h#definemycomplex_hclasscomplex{private:floatreal;floatimage;public:complex(float=0.0,float=0.0);//构造函数complex(constcomplex&c);//拷贝构造函数//以下为运算函数complexadd(constcomplex&c)const;//加运算complexs

2、ub(constcomplex&c)const;//减运算complexmul(constcomplex&c)const;//乘运算complexdiv(constcomplex&c)const;//除运算//以下为普通成员函数floatgetreal(void)const;//获取实部floatgetimage(void)const;//获取虚部voidsetcomplex(floatr,floati);//重新设定复数值.专业专注.......//以下为输出输入函数重载friendostream&operat

3、or<<(ostream&out,constcomplex&c);//输出重载friendistream&operator>>(istream&in,complex&c);//输入重载//以下为运算符重载friendcomplexoperator+(floatr,constcomplex&c);//friendcomplexoperator+(intr,constcomplex&c);friendcomplexoperator-(floatr,constcomplex&c);friendcomplexoperat

4、or-(intr,constcomplex&c);friendcomplexoperator(floatr,constcomplex&c);friendcomplexoperator(intr,constcomplex&c);friendcomplexoperator+(constcomplex&c,floatr);friendcomplexoperator+(constcomplex&c,intr);friendcomplexoperator-(constcomplex&c,floatr);friendcomp

5、lexoperator-(constcomplex&c,intr);friendcomplexoperator(constcomplex&c,floatr);friendcomplexoperator(constcomplex&c,intr);friendcomplexoperator/(floatr,constcomplex&c);friendcomplexoperator/(intr,constcomplex&c);friendcomplexoperator/(constcomplex&c,floatr);f

6、riendcomplexoperator/(constcomplex&c,intr);friendcomplexoperator+(constcomplex&c1,constcomplex&c2);.专业专注.......friendcomplexoperator-(constcomplex&c1,constcomplex&c2);friendcomplexoperator(constcomplex&c1,constcomplex&c2);friendcomplexoperator/(constcomplex&c

7、1,constcomplex&c2);};//定义虚数单位ieconstcomplexie(0,1);#endif//类的实现(mycomplex.cpp)#include#include"mycomplex.h"//构造函数complex::complex(floatr,floati){real=r;image=i;}//拷贝构造函数.专业专注.......complex::complex(constcomplex&c){real=c.real;image=c.image;}//加运算c

8、omplexcomplex::add(constcomplex&c)const{complext;t.real=real+c.real;t.image=image+c.image;returnt;}//减运算complexcomplex::sub(constcomplex&c)const{complext;t.real=real-c.real;t.image=image-

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。