- 1、本文档共66页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
IntroductiontoCOperatorOverloading介绍C的操作符重载
== and != Operators Notice why a “first” and “second” shouldn’t be data members: bool list::operator == (const list l2) const { node * first = head; node * second = l2.head; while (first second first-obj == second-obj) { first = first-next; second = second-next; } if (first || second) return FALSE; return TRUE; } Evaluate the efficiency of the following: bool list::operator != (const list l2) const { return !(*this == l2); } [] Operator string list::operator [] (int index) const { node * current = head; for (int i=0; i index current; i++) current = current-next; if (!current) { //consider what other alternatives there are string * temp = new string; //just in case return *temp; } return current-obj; } Notice how we must consider each special case (such as an index that goes beyond the number of nodes provided in the linked list ++ Operators: Prefix Postfix string list::operator ++ () { //prefix if (!ptr || !(ptr-next)) { //consider what other alternatives there are string * temp = new string; //just in case return *temp; } ptr = ptr-next; return ptr-obj; } string operator ++ (int){ //postfix string temp; if (!ptr) { temp = “\0”; //what does this do? return temp; //and this? } temp = ptr-obj; //and this? ptr = ptr-next; //and this? return temp; //and this? } Building a Class Introduction to C++ String Class Example Let’s build a complete class using operator overloading to demonstrate the rules and guidelines discussed We will re-examine this example again next lecture when discussing user defined type conversions The operations that make sense include: = for straight assignment of strings and char *’s and for insertion and extraction + and += for concatenation of strings and char *’s , =, , =, !=, == for comparison of strings [] for accessing a particular character in a string Overloading = Operators Whenever there is dynamic memo
您可能关注的文档
- DUUS神经系统疾病定位诊断学0708-边缘系统、基底神经节.ppt
- DWI在神经系统的临床应用(一).ppt
- EAU上尿路尿路上皮肿瘤诊治指南课件_临床医学_医药卫生_专业资料.ppt.ppt
- Emergence of social constructs and organizational behaviour A….ppt
- Ergonomic Evaluation of Operator Lifts for Farmers …(PPT-69).ppt
- Essen卒中风险评分量.ppt
- ERP基本原理及其在认知神经科学中的应用_图文_1490871597.ppt.ppt
- ERP基本原理及其在认知神经科学中的应用_免费下载.ppt
- EthnopharmacologyCultural Issues & Genetic Influencesethnopharmacologycultural问题及遗传的影响.ppt
- EV71感染重症病例临床救治专家共识解读(李兴旺).ppt.ppt
文档评论(0)