Explore small features of C ++, values and assignments

Source: Internet
Author: User

A [1] = "ASD"CodeI think you will often see that we often have a very easy way to reload such operators, so how to assign values is actually not difficult, the key lies in the reference FEATURES OF C ++:

# Include <iostream> <br/> using namespace STD; <br/> Class A {<br/> Public: <br/> (); <br/> Int & operator [] (INT d) {<br/> // data = D; <br/> return data; <br/>}< br/> PRIVATE: <br/> int data; <br/>}; <br/> A: () {<br/> DATA = 0; <br/>}< br/> main () {<br/> A; <br/> A [1] = 2; <br/> Int & B = A [1]; <br/> A [1] = 1; <br/> cout <B; <br/>}

The above Code does not confuse you. The key is to set it as a reference to the return value in the return of the operator overload function, so we can directly assign values to it.

I hope you can correct the shortcomings in this article.

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.