From my understanding, const modifiers should be read from right to left. From that, I get that:

const char*

is a pointer whose char elements can't be modified, but the pointer itself can, and

char const*

is a constant pointer to mutable chars.

But I get the following errors for the following code:

const char* x = new char[20];
x = new char[30];   //this works, as expected
x[0] = 'a';         //gives an error as expected

char const* y = new char[20];
y = new char[20];   //this works, although the pointer should be const (right?)
y[0] = 'a';         //this doesn't although I expect it to work

So... which one is it? Is my understanding or my compiler(VS 2005) wrong?

link|improve this question

13  
When in doubt always use the Spiral Rule. – Als Nov 11 '11 at 9:21
"...whose char elements can be modified, but the pointer itself can, and..." — I think you meant to say "can't" for one of those "can"s, but I don't know how confused you are so I don't know which to correct :P – detly Nov 11 '11 at 16:46
Try this website: www.cdecl.org – yasouser Dec 15 '11 at 4:20
feedback

4 Answers

up vote 40 down vote accepted

Actually, according to the standard, const modifies the element directly to its left. The use of const at the beginning of a declaration is just a convenient mental shortcut. So the following two statements are equivalent:

char const * pointerToConstantContent1;
const char * pointerToConstantContent2;

In order to ensure the pointer itself is not modified, const should be placed after the asterisk:

char * const constantPointerToMutableContent;

To protect both the pointer and the content to which it points, use two consts.

char const * const constantPointerToConstantContent;

I've personally adopted always putting the const after the portion I intend not to modify such that I maintain consistency even when the pointer is the part I wish to keep constant.

link|improve this answer
10  
'convenient shorthand' is an interesting description for something which is not shorter and doesn't follow the normal rules. – beetstra Nov 11 '11 at 12:01
The standard doesn't really care which order you use. Section 7.1.6 just shows both places and says use it in only one. – edA-qa mort-ora-y Nov 11 '11 at 12:04
@beetstra I agree. I changed it to "convenient mental shortcut" to be a bit more clear. – Greyson May 3 at 21:47
feedback

It works because both are same. May be you confused in this,

const char*  // both are same
char const*

and

char* const  // unmutable pointer to "char"

and

const char* const  // unmutable pointer to "const char"

[To remember this, here is a simple rule, '*' affects its whole LHS first]

link|improve this answer
Ok, I got it now. Thanks a lot. – Luchian Grigore Nov 11 '11 at 9:17
1  
unmutable pointer to char*.It is a unmutable pointer pointing to char not char *. – Als Nov 11 '11 at 9:24
@Als, edited. thx – iammilind Nov 11 '11 at 9:41
I think it's "immutable", not "unmutable" – Alexander Malakhov Dec 15 '11 at 1:30
feedback

That is because the rule is:

RULE: const binds left, unless there is nothing on the left, then it binds right :)

so, look at these as:

(const --->> char)*
(char <<--- const)*

both same! oh, and --->> and <<--- are NOT operators, they just show what the const binds to.

link|improve this answer
Thanks, now it's clear. – Luchian Grigore Nov 11 '11 at 9:17
yeah, correct operator is -->> and it operates only on values. Try int i = 8; std::cout << (i -->> 1) << std::endl; :) – Alexander Malakhov Dec 15 '11 at 1:37
+1, for the nice way of explaining. – iammilind May 19 at 2:23
feedback

Here is how I always try to interpret:

char *p

     |_____ start from the asterisk. The above declaration is read as: "content of `p` is a `char`".

char * const p

     |_____ again start from the asterisk. "content of constant (since we have the `const` 
            modifier in the front) `p` is a `char`".

char const *p

           |_____ again start from the asterisk. "content of `p` is a constant `char`".

Hope it helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.