本篇内容主要讲解“C++定义运算符有什么用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C++定义运算符有什么用”吧!
定义运算符主要是为了模仿习惯用法
Minimize surprises.
让程序看起来更自然。
Example(示例)
class X {
public:
// ...
X& operator=(const X&); // member function defining assignment
friend bool operator==(const X&, const X&); // == needs access to representation
// after a = b we have a == b
// ...
};
Here, the conventional semantics is maintained: Copies compare equal.
这里,赋值,相等比较的习惯语义得以保持。
Example, bad(反面示例)
X operator+(X a, X b) { return a.v - b.v; } // bad: makes + subtract
Nonmember operators should be either friends or defined in the same namespace as their operands. Binary operators should treat their operands equivalently.
非成员运算符应该要么是友元函数,要么和操作对象定义在一起。二进制运算符应该同等对待操作对象。
到此,相信大家对“C++定义运算符有什么用”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。