首页 > 编程语言 > 详细

C++ operator overloading

时间:2020-06-14 09:50:01      阅读:39      评论:0      收藏:0      [点我收藏+]

An operator is a symbol that tells the complier to perform specifc mathematical or logical manipulations.

C++ allows u to specify more than one definition for an operator in the same scope, which is called operator overloading.

almost all operators can be overloaded in c++; except below:

1. socpe operator ::

2. sizeof 

3. member selector .

4. member pointer selector *

5. ternary operator ?:

我们期待C3 直接 变成7,9; 但是实际上编译的时候会报错, 因为对于class的对象而言还没有定义+这样的操作

如何定义呢:

这个例子中real 是C1 的;c.real是C2的;

返回一个临时的赋值给C3

技术分享图片

 

 技术分享图片

技术分享图片

 

C++ operator overloading

原文:https://www.cnblogs.com/yunpengk/p/13123702.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!