Effective C + + clause 5 understand what functions C + + silently writes and calls

Source: Internet
Author: User

1. member functions must be defined only if they are required (called), and in the same vein, they will be created by the compiler only if the default constructor, copy constructor, assignment operator, destructor is required, and the class defines them (unless the function is declared as a virtual function in the base class, the function produced by the compiler is non-virtual. public).

2. Not as long as the class does not have a default constructor defined, the copy constructor, the assignment operation is automatically synthesized by the compiler, and they are only generated when "required".

(see http://www.cnblogs.com/reasno/p/4742322.html for details)

3. Although the compiler generates an assignment operator if the creator of the class does not declare it, but sometimes the compiler cannot produce it, including the following two cases:

1). The data member is a const object or reference.

2). A base class declares the assignment operator as private.

Effective C + + clause 5 understand what functions C + + silently writes and calls

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.