New A and new ();

Source: Internet
Author: User

Explain the meaning of the following statement:
1. new;

2. new ();

For the difference between new A and new A (), we can draw the following conclusion:
1. When the class body contains A display suitable for the default constructor, new A and new A () act the same way. They both call operator new to allocate memory and then call the default constructor to initialize the object.
2. When the class body has no display constructor, new A () first calls operator new to allocate memory for the object, and then uses null values to initialize the object member variable, while new A only calls operator new to allocate memory, and the object's member variables are meaningless random values! (Note: Applicable to basic data types, such as int)


 

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.