Valid C ++ Clause 6 and valid Clause 6

Source: Internet
Author: User

Valid C ++ Clause 6 and valid Clause 6
If you do not want to use a function automatically generated by the compiler, you should explicitly reject it.

The knowledge point in this section is
If you do not want the compiler to automatically generate the copy function and the copy assignment function. We can implement the following two methods:

First:
Declare the copy and copy assignment functions as private members without implementing them. In this way, the compiler cannot compile such a function. If other member functions call them, the connector cannot be connected.
The following code:

Class HomeForSale {public :...... Private: HomeForSale (const HomeForSale &); HomeForSale & operator = (const HomeForSale &);};

Second:
You can define a base class and declare it as a private member through the copy function and copy assignment function of the base class. In this way, when the derived class calls the copy function and copy assignment function, it cannot be compiled.
The following code:

Class Uncopyable {protected: Uncopyable (){}~ Uncopyable () {}; private: Uncopyable (const Uncopyable &); Uncopyable & operator = (const Uncopyable &) ;}; class HomeForSale: public Uncopyable {......};

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.