1.重載操作符跟重載函數(shù)一樣的,只不過要區(qū)分成員的和非成員的
成員的重載操作符,第一個參數(shù)默認(rèn)了是this 指針形參,所以重載操作符作為成員函數(shù),都應(yīng)該是右操作符
比如:
ostream& operator<<(ostream &out) //右操作運(yùn)算符 調(diào)用方式:Screen s;s< { out<<'('< return out; } friend ostream& operator<<(ostream& out,Screen& s) //友原函數(shù)的重載操作符 { out<<'('< return out; } 上述一個成員,一個非成員重載方式,調(diào)用相應(yīng)如下: s1< std::cout< 2.至于返回值,值得注意的地方是: 何時返回類型的引用值何時返回類類型,應(yīng)該跟內(nèi)置的操作符一致; 比如+=返回引用,+則應(yīng)該返回類類型本身。 如下: Screen& operator+=(Screen& rhs) //復(fù)合賦值操作符 { height += rhs.height; width += rhs.width; *pContents += *(rhs.pContents); return *this; } friend Screen operator+(Screen& s1,Screen& s2 ) { Screen s; s.width = s1.width+s2.width; s.height = s1.height+s2.height; *(s.pContents) = *(s1.pContents)+*(s2.pContents); return s; } //可以兩種方式調(diào)用: Screen s0,s1,s2; s0=s1+s2; //隱式調(diào)用 //或者 s0=operator+(s1,s2);//我理解為顯式調(diào)用 3.函數(shù)對象 可以直接調(diào)用類的構(gòu)造函數(shù)產(chǎn)生一個臨時對象,作為參數(shù)傳遞給函數(shù)實參 比如: Class GT_cls{ public: GT_cls(int val):bool(val){} bool operator(const string s) ; {return s.size()>=bound;} private: std::string::size_type bound; }; 然后 count_if(word.begin(),word.end(),GT_cls(6)); //count_if標(biāo)準(zhǔn)庫算法 這里GT_cls先構(gòu)造臨時對象,然后count_if傳遞word對象進(jìn)GT_cls然后調(diào)用函數(shù)()//C++ Primer里面的例子 再比如如下: struct IterOp{ virtual void operator()(std::vector }; struct IterAdd : public IterOp{ void operator()(std::vector }; struct IterSub : public IterOp{ void operator()(std::vector }; IterOp* ops[] = {new IterAdd, new IterSub};for (; iter != flags[index]; ops[index]->operator()(iter)) //簡單的顯式調(diào)用 總結(jié): 由上述可以得出,重載操作符跟函數(shù)對象也是函數(shù),只不過分顯式跟隱式而已。
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |