操作符重载题稿.ppt

  1. 1、本文档共45页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
int Birthday::sheet[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ Birthday lxl(1940,11,27,Bruce Lee); Birthday cl(1954,4,7,Jackie Chan); int days = 0; coutlxl.GetName()s birthday is: lxl.GetYear() . lxl.GetMonth() . lxl.GetDay()endl; coutcl.GetName()s birthday is: cl.GetYear(). cl.GetMonth() . cl.GetDay()endl; if(lxl cl){ days = lxl - cl; cout cl.GetName() is older.(abs(days) days)endl; } else if(lxl==cl) cout They are the same age.endl; else{ days = lxl - cl; cout lxl.GetName() is older.(abs(days) days)endl; } return 0; } 8.3.4 重载函数调用符() 重载格式 类型 类 :: operator() ( 参数表 ) ; () 运算符用于函数调用 例 设 x 是类 X 的一个对象,则表达式 x ( arg1, arg2, … ) 可被解释为 x . operator () (arg1, arg2, … ) 8.3.4 重载函数调用符() //例 用重载()运算符实现数学函数的抽象 #include iostream using namespace std ; class F { public : double operator ( ) ( double x , double y ) ; } ; double F :: operator ( ) ( double x , double y ) { return x * x + y * y ; } int main ( ) { F f ; cout f ( 5.2 , 2.5 ) endl ; } 8.3.4 重载函数调用符() //例7-8 用重载()运算符实现数学函数的抽象 #include iostream using namespace std ; class F { public : double operator ( ) ( double x , double y ) ; } ; double F :: operator ( ) ( double x , double y ) { return x * x + y * y ; } int main ( ) { F f ; cout f ( 5.2 , 2.5 ) endl ; } f . operator() (5.2, 2.5) 8.3.4 重载函数调用符() //例7-8 用重载()运算符实现数学函数的抽象 #include iostream using namespace std ; class F { public : double operator ( ) ( double x , double y ) ; } ; double F :: operator ( ) ( double x , double y ) { return x * x + y * y ; } int main ( ) { F f ; cout f ( 5.2 , 2.5 ) endl ; } memFun memFun f.memFun (5.2,2.5) 比较 定义普通成员函数 8.4 运算符重载的限制 可以被重载的运算符有: 算术运算符:+、-、*、/、%、++、--   位操作运算符:、|、~、^、、   逻辑运算符:!、、||   比较运算符:、、=、= =、!=   赋值运算符:=、+=、-=、*=、/=、%=、=、|=、^=、=、=   其他运算符:[]、()、-、,(逗号运算符)、new、delete、new[]、delete[]、-* 不能被重载的运算符有: “.”、“.*”、“::”、“?:”、sizeof C++认为没有哪种特殊的情况需要重载一个三元运算符,所以不支持“

文档评论(0)

希望之星 + 关注
实名认证
内容提供者

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

1亿VIP精品文档

相关文档