vote up 6 vote down star
2

I know the rule-of-thumb to read declarations right-to-left and I was fairly sure I knew what was going on until a colleague told me that:

const MyStructure** ppMyStruct;

means "ppMyStruct is a pointer to a const pointer to a (mutable) MyStructure" (in C++).

I would have thought it meant "ppMyStruct is a pointer to a pointer to a const MyStructure". I looked for an answer in the C++ spec, but apparently I'm not very good at that...

What does in mean in C++, and does it mean the same thing in C?

flag

58% accept rate

6 Answers

vote up 18 vote down check

Your colleague is wrong. That is a (non-const) pointer to a (non-const) pointer to a const MyStructure. In both C and C++.

link|flag
It's also part of the reason you will sometimes see the alternative "spelling recommended: MyStructure const * *ppMyStruct; Then you can read right-to-left: pointer to pointer to const Mystructure. – MadKeithV Dec 3 '08 at 14:00
vote up 3 vote down

As a corollary to the other comments, don't put 'const' first. It really belongs after the type. That would have clarified the meaning immediately, just read it RTL as usual:

MyStructure const** ppMyStruct;
link|flag
I fail to see how that makes it clearer, but I suppose it's a matter of habit. If the const comes first, I find it just as easy to read it RTL as "a pointer to a pointer to a MyStructure which is const". – Niklas Dec 9 '08 at 11:42
vote up 2 vote down

You are right.

Another answer already pointed to the "Clockwise Spiral Rule". I liked that one very much - a little elaborate, though.

link|flag
vote up 2 vote down

You were right in your interpretation. Here's another way to look at it:

const MyStructure *      *ppMyStruct;        // ptr --> ptr --> const MyStructure
      MyStructure *const *ppMyStruct;        // ptr --> const ptr --> MyStructure
      MyStructure *      *const ppMyStruct;  // const ptr --> ptr --> MyStructure

These are all the alternatives of a pointer-to-pointer with one const qualifier. The right-to-left rule can be used to decipher the declarations (at least in C++; I'm no C expert).

link|flag
vote up 4 vote down

Your colleague is wrong, and it's the same for C and C++. Try the following:

typedef struct foo_t {
    int i;
} foo_t;

int main()
{
    foo_t f = {123};
    const foo_t *p = &f;
    const foo_t **pp = &p;
    printf("f.i = %d\n", (*pp)->i);
    (*pp)->i = 888; // error
    p->i = 999;     // error
}

Visual C++ 2008 gives the following errors for the last two lines:

error C2166: l-value specifies const object
error C2166: l-value specifies const object

GCC 4 says:

error: assignment of read-only location '**pp'
error: assignment of read-only location '*p'

G++ 4 says:

error: assignment of data-member 'foo_t::i' in read-only structure
error: assignment of data-member 'foo_t::i' in read-only structure
link|flag
Why is this downvoted? I just thought it was better to give a specific example, instead of just telling him that he is right. – csl Dec 3 '08 at 10:01
guess it was a Visual C++ hater, GNU C++ lover :-) – dmityugov Dec 3 '08 at 10:28
Doesn't answer the question – Dynite Dec 3 '08 at 10:46
vote up 19 vote down

In such cases the tool cdecl (or c++decl) can be helpfull:

     [flolo@titan ~]$ cdecl explain "const struct s** ppMyStruct"
     declare ppMyStruct as pointer to pointer to const struct s
link|flag
Very useful. Why isn't this tool well-known? – David Holm Dec 3 '08 at 10:59
Do you happen to know if it's available for windows? – Niklas Dec 3 '08 at 11:03
It is open source and afaik it doesnt have any specific requirements to the OS. When lucky it should be compileable with any compiler, in worst case you have to use the gcc/cygwin or mingw stuff. – flolo Dec 3 '08 at 11:13
Great tip. Thanks! – unclerojelio Feb 1 at 15:39

Your Answer

Get an OpenID
or

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