C ++ Primer Plus learning note-taking class initialization sequence

Source: Internet
Author: User

C ++ Primer Plus learning note-taking class initialization sequence base class constructor, destructor and operator functions operator = cannot be inherited by the derived class; then, when creating a derived class object, how do I call the base class constructor to initialize the base class data ??? The answer is: when executing the constructor, follow the sequence of First Brother (base class), then guest (Object member), and then self (derived class). On the other hand, when executing the destructor, first, execute the destructor of the derived class, and then execute the destructor of the base class. The reason is that the destruction of the base class implies the destruction of the derived class, so the destructor of the derived class must be executed first;

# Include

 
  
Using namespace std; class Member {public: Member () {cout <"Member created" <

  
   
   运行结果:
   
   

Base created

Member created

Derived created

Derived destroyed

Member destroyed

Base destroyed


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.