About C + + constructors

Source: Internet
Author: User

If you have more than one default constructor, say:

Class Myclass{public:myclass () {}; MyClass (int a = 0, int b = 0,int c=0) {A_ = A;cout << "Constructor 1" << Endl;} MyClass (int A, int b) {A_ = A;b_ = B;cout << "Constructor 2" << Endl;} ~myclass () {};p rivate:int a_;int b_;int c_;};

If you have a constructor that has no arguments:

MyClass () {}

Then the declaration object calls the constructor without arguments, such as:

MyClass class ();

The call is:

MyClass () {};

If you write three parameters when declaring an object, such as:

MyClass Class1 (a);

Then the call is:

MyClass (int a = 0, int b = 0,int c=0)

If there is no default constructor with no arguments, the call is in the case without arguments:

MyClass (int a = 0, int b = 0,int c=0)

When all three parameters have default values, they are not called at any time (with limited levels and no discovery of the invocation):

MyClass (int A, int b)

To construct the object.

About C + + constructors

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.