Overload assignment operator

Source: Internet
Author: User

# include
class sample
{< br> int N;
Public:
sample () {}< br> sample (int I) {n = I ;}< br> sample & operator = (sample S) // overload assignment operator
{< br> N = s. n;
return * This;
}< br> void disp ()
{< br> cout <"n =" }< BR >};
void main ()
{< br> sample S1 (10), S2;
S2 = S1;
cout <<"S1: "; s1.disp ();
cout <" S2: "; s2.disp ();
}

description: "operator = member function" is used to assign values to two objects. However, if you remove the member functions of the overload operator, the Program can still run. Normally, the system automatically generates a default value assignment operator for each class to complete the assignment operation between objects.

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.