Difference between const char *, char const *, and char * const

Source: Internet
Author: User

After studying for a long time, I made a mistake during the written examination. Send a log to commemorate it.

 

In fact, this concept is very similar to the following three methods:

Bjarne provides a mnemonic method in his c ++ programming language:

Read a statement from the right to the left.

Char * const CP; (* read as pointer to) CP is a const pointer to Char

Const char * P; P is a pointer to const char;

Char const * P; the same as C ++ does not have the const * operator, so const can only belong to the previous type.

The C ++ standard stipulates that the const keyword is equivalent before the type or variable name.

Const int n = 5; // same as below

Int const M = 10

Conclusion:

Char * const CP: defines a pointer constant pointing to a character, that is, the const pointer.

Const char * P: defines a pointer to a character constant.

Char const * P: equivalent to const char * P

 

Const char ** is a pointer to a pointer that points to another String constant.
Char ** is also a pointer to a pointer, which points to another string variable.

 

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.