Effective C + + clause 6

Source: Internet
Author: User

If you do not want to use a function generated automatically by the compiler, you should explicitly deny

The knowledge points in this section are
If you do not want the compiler to automatically generate the copy function and the copy assignment function. We can do this in two ways

The first type:
The copy function and the copy assignment function are declared as private members, and they are not implemented. This will not compile if you call such a function compiler. If other member functions call them, the connector cannot pass the connection.
The following code:

class HomeForSale{public:    ……private:    HomeForSale(const HomeForSale&);    operator=(const HomeForSale&);};

The second type:
You can define a base class by declaring the copy function of the base class and the copy assignment function as private members, so that derived class cannot compile by invoking the copy function and the copy assignment function.
The following code:

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

Effective C + + clause 6

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.