Introduction to C++ Operator Overloading介绍C++的操作符重载.ppt

Introduction to C++ Operator Overloading介绍C++的操作符重载.ppt

  1. 1、本文档共66页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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

文档评论(0)

ctuorn0371 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档