Heavy Load () operator and heavy load forced type conversion

Source: Internet
Author: User

// After studying the half-host model, I finally figured out that // writing this test code can demonstrate the effect of class CConvert {public: CConvert () {m_nValue = 10;} // reload () operator int operator (); // overload int forced type conversion operator int (); protected: private: int m_nValue ;}; int CConvert: operator ()() {return m_nValue;} CConvert: operator int () {return m_nValue;} void SetValue (int nValue) {int nTest = nValue;} int main () {CConvert convert; setValue (convert); // call the forced type conversion overload character SetValue (convert (); // call the parentheses operator return 0 after the overload ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.