Accessing private members of a class with #define in C + +

Source: Internet
Author: User

We know that private members of a class cannot be accessed outside of the class.

For example, there is the following simple class:

class ClxECS
{
private:
int iPrivate;
};

So the following function is not compiled:

  void ECS_test()
{
ClxECS lx;
lx.iPrivate = 13;
  cout << lx.iPrivate << endl;
}

However, we are not without the means to access the private members of the class.

In fact, the method is simple, just add the following line of code to the declaration of the class:

#define private public

Similarly, this method applies to the protection of members:

#define protected public

However, this is an informal means, it will destroy all the encapsulation of the class. In C + +, the presence of #define is also to be compatible with C. So it is only in very special circumstances that this informal approach is used to access the private or protected members of the class.

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.