Use it in C ++ # Private Members of the define struct class

Source: Internet
Author: User

We know that private members of a class cannot be accessed outside the class.
For example, the following simple class is available:

Class clxecs
{
PRIVATE:
Int iprivate;
};

The following function cannot be compiled:

Void ecs_test ()
{
Clxecs lx;
Lx. iprivate = 13;

Cout <lx. iprivate <Endl;
}

However, there is no way to access the Private Members of the category.
In fact, the method is very simple. Just add the following line of code before the class declaration:

# Define private public

Similarly, this method applies to protecting members:

# Define protected public

However, this is an informal means that will destroy all encapsulation of the class. In C ++, # define also exists to be compatible with C. Therefore, this informal method is used only in special circumstances to protect the private or members of the category.

Related 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.