C++網易雲課堂開發工程師-操作符重載

來源:互聯網
上載者:User

標籤:文法分析   返回   span   操作符重載   name   網易雲   col   臨時   重載   

1.操作符重載,(可以使用成員函數,也可以使用非成員函數) this

所有的成員函數均隱藏著一個參數this.

this與調用者相互綁定。

complex c1,c2;                                                                                         對於兩個複數的相加,暗含著左邊加到右邊。

inline complex&

complex::operator += (this, const complex& r){                                 this通常為隱藏的

  return _doapl(this, r);

}

2.return by reference 文法分析

inline complex&

_doapl(complex* ths, const complex& r){

  return *ths;

}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

inline complex&                                                                                                  這一部分可以擁有傳回型別,同樣也可以不使用傳回型別。

complex::operator += (const complex& r){                                                     但是,如果要使用連續加法,那麼將不再能夠使用了例如:C3 += C2 += C1;

  return __doapl(this,r);

}

3.非成員函數的運算子多載

inline complex                                                                                                      這個地方為什麼不使用引用呢?

operator + (const complex& x, const complex& y){

  return complex(real(x) + real(y), imag(x) + imag(y));

}

~~~~~~~~為什麼不返回引用呢~~~~~~~~~

因為返回的東西,是location的,是臨時對象。

typename()                       complex()                                                                    建立臨時的對象,重要!

C++網易雲課堂開發工程師-操作符重載

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.