C++运算符重载例程详解.docx
《C++运算符重载例程详解.docx》由会员分享,可在线阅读,更多相关《C++运算符重载例程详解.docx(19页珍藏版)》请在咨信网上搜索。
运算符重载就是对一个已有的运算符赋予新的含义,使之实现新功能。 下面将通过简单的几个例程阐叙其用法。 例10.1 通过函数来实现复数相加。 #include <iostream> using namespace std; class Complex //定义Complex类 {public: Complex( ){real=0;imag=0;} //定义构造函数 Complex(double r,double i){real=r;imag=i;} //构造函数重载 Complex complex_add(Complex &c2); //声明复数相加函数 void display( ); //声明输出函数 private: double real; //实部 double imag; //虚部 }; Complex Complex::complex_add(Complex &c2) {Complex c; c.real=real+c2.real; c.imag=imag+c2.imag; return c;} void Complex::display( ) //定义输出函数 {cout<<″(″<<real<<″,″<<imag<<″i)″<<endl;} int main( ) {Complex c1(3,4),c2(5,-10),c3; //定义3个复数对象 c3=plex_add(c2); //调用复数相加函数 cout<<″c1=″; c1.display( ); //输出c1的值 cout<<″c2=″; c2.display( ); //输出c2的值 cout<<″c1+c2=″; c3.display( ); //输出c3的值 return 0; } 例10.2 改写例10.1,重载运算符“+”,使之能用于两个复数相加。 #include <iostream> using namespace std; class Complex {public: Complex( ){real=0;imag=0;} Complex(double r,double i){real=r;imag=i;} Complex operator+(Complex &c2); //声明重载运算符的函数 void display( ); private: double real; double imag; }; Complex Complex::operator+(Complex &c2) //定义重载运算符的函数 { Complex c; c.real=real+c2.real; c.imag=imag+c2.imag; return c;} void Complex∷display( ) { cout<<″(″<<real<<″,″<<imag<<″i)″<<endl;} int main( ) { Complex c1(3,4),c2(5,-10),c3; c3=c1+c2; //运算符+用于复数运算 cout<<″c1=″;c1.display( ); cout<<″c2=″;c2.display( ); cout<<″c1+c2=″;c3.display( ); return 0; } 例10.3 将运算符“+”重载为适用于复数加法,重载函数不作为成员函数,而放在类外,作为Complex类的友元函数。 #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 + (Complex &c1,Complex &c2); //重载函数作为友元函数 void display( ); private: double real; double imag; }; Complex operator + (Complex &c1,Complex &c2) //定义作为友元函数的重载函数 {return Complex(c1.real+c2.real, c1.imag+c2.imag);}//简洁的写法 void Comple::display( ) {cout<<″(″<<real<<″,″<<imag<<″i)″<<endl;} int main( ) {Complex c1(3,4),c2(5,-10),c3; c3=c1+c2; cout<<″c1=″; c1.display( ); cout<<″c2=″; c2.display( ); cout<<″c1+c2 =″; c3.display( ); } 例10.4 定义一个字符串类String,用来存放不定长的字符串,重载运算符“==”,“<”和“>”,用于两个字符串的等于、小于和大于的比较运算。 为了使读者便于理解程序,同时也使读者了解建立程序的步骤,下面分几步来介绍编程过程。 (1) 先建立一个String类: #include <iostream> using namespace std; class String {public: String( ){p=NULL;} //默认构造函数 String(char *str); //构造函数 void display( ); private: char *p; //字符型指针,用于指向字符串 }; String∷String(char *str) //定义构造函数 {p=str;} //使p指向实参字符串 void String∷display( ) //输出p所指向的字符串 {cout<<p;} int main( ) {String string1(″Hello″),string2(″Book″); string1.display( ); cout<<endl; string2.display( ); return 0; } (2) 有了这个基础后,再增加其他必要的内容。现在增加对运算符重载的部分。 为便于编写和调试,先重载一个运算符“>”。程序如下: #include <iostream> #include <string> using namespace std; class String {public: String( ){p=NULL;} String(char *str); friend bool operator>(String &string1,String &string2); //声明运算符函数为友元函数 void display( ); private: char *p; //字符型指针,用于指向字符串 }; String∷String(char *str) {p=str;} void String∷display( ) //输出p所指向的字符串 {cout<<p;} bool operator>(String &string1,String &string2) //定义运算符重载函数 {if(strcmp(string1.p,string2.p)>0) return true; else return false; } int main( ) {String string1(″Hello″),string2(″Book″); cout<<(string1>string2)<<endl; } (3) 扩展到对3个运算符重载。 在String类体中声明3个成员函数: friend bool operator> (String &string1, String &string2); friend bool operator< (String &string1, String &string2); friend bool operator==(String &string1, String& string2); 在类外分别定义3个运算符重载函数: bool operator>(String &string1,String &string2) //对运算符“>”重载 {if(strcmp(string1.p,string2.p)>0) return true; else return false; } bool operator<(String &string1,String &string2) //对运算符“<”重载 {if(strcmp(string1.p,string2.p)<0) return true; else return false; } bool operator==(String &string1,String &string2) //对运算符“==”重载 {if(strcmp(string1.p,string2.p)==0) return true; else return false; } 再修改主函数: int main( ) {String string1(″Hello″),string2(″Book″),string3(″Computer″); cout<<(string1>string2)<<endl; //比较结果应该为true cout<<(string1<string3)<<endl; //比较结果应该为false cout<<(string1==string2)<<endl; //比较结果应该为false return 0; } (4) 再进一步修饰完善,使输出结果更直观。下面给出最后的程序。 #include <iostream> using namespace std; class String {public: String( ){p=NULL;} String(char *str); friend bool operator>(String &string1,String &string2); friend bool operator<(String &string1,String &string2); friend bool operator==(String &string1,String &string2); void display( ); private: char *p; }; String∷String(char *str) {p=str;} void String∷display( ) //输出p所指向的字符串 {cout<<p;} bool operator>(String &string1,String &string2) {if(strcmp(string1.p,string2.p)>0) return true; else return false; } bool operator<(String &string1,String &string2) {if(strcmp(string1.p,string2.p)<0) return true; else return false; } bool operator==(String &string1,String &string2) {if(strcmp(string1.p,string2.p)==0) return true; else return false; } void compare(String &string1,String &string2) {if(operator>(string1,string2)==1) {string1.display( );cout<<″>″;string2.display( );} else if(operator<(string1,string2)==1) {string1.display( );cout<<″<″;string2.display( );} else if(operator==(string1,string2)==1) {string1.display( );cout<<″=″;string2.display( );} cout<<endl; } int main( ) {String string1(″Hello″),string2(″Book″),string3(″Computer″),string4(″Hello″); compare(string1,string2); compare(string2,string3); compare(string1,string4); return 0; } 例10.5 有一个Time类,包含数据成员minute(分)和sec(秒),模拟秒表,每次走一秒, 满60秒进一分钟,此时秒又从0开始算。要求输出分和秒的值。 #include <iostream> using namespace std; class Time { public: Time(){minute=0;sec=0;} //默认构造函数 Time(int m,int s):minute(m),sec(s){ } //构造函数重载 Time operator++( ); //声明运算符重载函数 void display(){cout<<minute<<″:″<<sec<<endl;} //定义输出时间函数 private: int minute; int sec; }; Time Time::operator++( ) //定义运算符重载函数 { if(++sec>=60) { sec=0; //满60秒进1分钟 ++minute;} return *this; //返回当前对象值 } int main( ) { Time time1(34,0); for (int i=0;i<61;i++) {++time1; time1.display( );} return 0; } 例10.6 在例10.5程序的基础上增加对后置自增运算符的重载。修改后的程序如下: #include <iostream> using namespace std; class Time {public: Time( ){minute=0;sec=0;} Time(int m,int s):minute(m),sec(s){} Time operator++( ); //声明前置自增运算符“++”重载函数 Time operator++(int); //声明后置自增运算符“++”重载函数 void display( ){cout<<minute<<″:″<<sec<<endl;} private: int minute; int sec; }; Time Time∷operator++( ) //定义前置自增运算符“++”重载函数 {if(++sec>=60) {sec-=60; ++minute;} return *this; //返回自加后的当前对象 } Time Time∷operator++(int) //定义后置自增运算符“++”重载函数 {Time temp(*this); sec++; if(sec>=60) {sec-=60; ++minute;} return temp; //返回的是自加前的对象 } int main( ) {Time time1(34,59),time2; cout<<″ time1 : ″; time1.display( ); ++time1; cout<<″++time1: ″; time1.display( ); time2=time1++; //将自加前的对象的值赋给time2 cout<<″time1++: ″; time1.display( ); cout<<″ time2 :″; time2.display( ); //输出time2对象的值 } 例10.7 在例10.2的基础上,用重载的“<<”输出复数。 #include <iostream> using namespace std; class Complex {public: Complex( ){real=0;imag=0;} Complex(double r,double i){real=r;imag=i;} Complex operator + (Complex &c2); //运算符“+”重载为成员函数 friend ostream& operator << (ostream&,Complex&); //运算符“<<”重载为友元函数 private: double real; double imag; }; Complex Complex::operator + (Complex &c2) //定义运算符“+”重载函数 {return Complex(real+c2.real,imag+c2.imag);} ostream& operator << (ostream& output,Complex& c) //定义运算符“<<”重载函数 {output<<″(″<<c.real<<″+″<<c.imag<<″i)″<<endl; return output; } int main( ) {Complex c1(2,4),c2(6,10),c3; c3=c1+c2; cout<<c3; return 0; } (在Visual C++ 6.0环境下运行时,需将第一行改为#include <iostream.h>,并删去第2行。) 例10.8 在例10.7的基础上,增加重载流提取运算符“>>”,用“cin>>”输入复数,用“cout<<”输出复数。 #include <iostream> using namespace std; class Complex {public: friend ostream& operator << (ostream&,Complex&); //声明重载运算符“<<” friend istream& operator >> (istream&,Complex&); //声明重载运算符“>>” private: double real; double imag; }; ostream& operator << (ostream& output,Complex& c) //定义重载运算符“<<” {output<<″(″<<c.real<<″+″<<c.imag<<″i)″; return output; } istream& operator >> (istream& input,Complex& c) //定义重载运算符“>>” {cout<<″input real part and imaginary part of complex number:″; input>>c.real>>c.imag; return input; } int main( ) {Complex c1,c2; cin>>c1>>c2; cout<<″c1=″<<c1<<endl; cout<<″c2=″<<c2<<endl; return 0; }- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- C+ 运算 重载 例程 详解
咨信网温馨提示:
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【pc****0】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【pc****0】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【pc****0】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【pc****0】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
关于本文