Study C ++ primer (4) again-array and pointer

Source: Internet
Author: User

Modern C ++ProgramWe recommend that you use vector and iterator types whenever possible, instead of low-level arrays and pointers. Well-designed programs use arrays and pointers only when speed is emphasized.

After declaring a pointer, remember to initialize it. If it is not specified, it is initialized to 0.

Void * stores the addresses of personality objects.

Comparison between pointer and reference:
Same: indirectly accesses another value.
Different: 1) the reference always points to a specific object and needs to be initialized during definition;
2) Differences in Value assignment: The reference always points to a specific object. Assigning a value to the reference modifies the value associated with the reference.

Pointer to the const object:
Const double * P;
The value of the pointer to the const object cannot be modified.
Const pointer
Int * const cur
Whether the value of the object indicated by the pointer can be modified depends on the object type.

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.