本篇內(nèi)容主要講解“C++定義運(yùn)算符有什么用”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“C++定義運(yùn)算符有什么用”吧!
成都創(chuàng)新互聯(lián)于2013年創(chuàng)立,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元蒙山做網(wǎng)站,已為上家服務(wù),為蒙山各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:028-86922220
定義運(yùn)算符主要是為了模仿習(xí)慣用法
Minimize surprises.
讓程序看起來(lái)更自然。
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.
這里,賦值,相等比較的習(xí)慣語(yǔ)義得以保持。
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.
非成員運(yùn)算符應(yīng)該要么是友元函數(shù),要么和操作對(duì)象定義在一起。二進(jìn)制運(yùn)算符應(yīng)該同等對(duì)待操作對(duì)象。
到此,相信大家對(duì)“C++定義運(yùn)算符有什么用”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!