vote up 3 vote down star

I've recently decided that I just have to finally learn C/C++, and there is one thing I do not really understand about pointers or more precisely, their definition.

How about these examples:

  1. int* test;
  2. int *test;
  3. int * test;
  4. int* test,test2;
  5. int *test,test2;
  6. int * test,test2;

Now, to my understanding, the first 3 cases are all doing the same: Test is not an int, but a pointer to one.

The second set of examples is a bit more tricky. In case 4, both test and test2 will be pointers to an int, whereas in case 5, only test is a pointer, whereas test2 is a "real" int. What about case 6? Same as case 5?

flag

9 Answers

vote up 29 vote down check

4, 5, and 6 are the same thing, only test is a pointer. If you want two pointers, you should use:

int *test, *test2;

Or, even better (to make everything clear):

int* test;
int* test2;
link|flag
The winner by a nose. Upvote. – dmckee Oct 7 '08 at 21:06
So Case 4 is actually a death-trap then? Is there any specification or further reading that explains why int* test,test2 only makes the first variable a pointer? – Michael Stum Oct 7 '08 at 21:06
1  
@ Michael Stum It's C++ so do you really think there is a logical explanation? – d03boy Oct 7 '08 at 21:07
1  
Read K&R (The C Programming Language). It explains all this very clearly. – Ferruccio Oct 7 '08 at 21:09
2  
Whitespace is insignificant to a C compiler (ignoring the preprocessor). So no matter how many spaces there are or aren't between the asterisk and its surroundings, it has exactly the same meaning. – ephemient Oct 7 '08 at 21:59
show 2 more comments
vote up 1 vote down

Cases 1, 2 and 3 are the same, they declare pointers to int variables. Cases 3, 4 and 5 are the same, as they declare one pointer to, and one int variable respectively. If you want do declare two pointers in one line (which you shouldn't), you need to put an asterisk in front of each variable name:

int *test, *test2;

There is no certain correct way that says where the asterisk goes. int* test looks better because it is easier for us to imagine that appending * to the end of a type means "pointer to" that type. However, int *test makes more sense, because you can work with it like the minus sign in maths:

-(-x) = x

is analogous to

*(*test) = test

This has always helped me. Sadly, the upshot of it all is that sometimes I use int* test and sometimes int *test.

link|flag
vote up 2 vote down

A good rule of thumb, a lot of people seem to grasp these concepts by: In C++ a lot of semantic meaning is derived by the left-binding of keywords or identifiers.

Take for example:

int const bla;

The const applies to the "int" word. The same is with pointers' asterisks, they apply to the keyword left of them. And the actual variable name? Yup, that's declared by what's left of it.

link|flag
vote up 8 vote down

Use the "Clockwise Spiral Rule" to help parse C/C++ declarations.

Also, declarations should be in separate statements when possible (which is true the vast majority of times).

link|flag
That looks daunting and quite horrible, sorry to say. – d03boy Oct 7 '08 at 21:43
it does, but it seems quite a good explanation for some of the more complicated constructs – Michael Stum Oct 7 '08 at 22:27
@d03boy: There's no question - C/C++ declarations can be a nightmare. – Michael Burr Oct 7 '08 at 22:35
i like that rule very much. – Johannes Schaub - litb Dec 4 '08 at 2:45
vote up 5 vote down

Many coding guidelines recommend that you only declare one variable per line. This avoids any confusion of the sort you had before asking this question. Most C++ programmers I've worked with seem to stick to this.


A bit of an aside I know, but something I found useful is to read declarations backwards.

int* test;   // test is a pointer to an int

This starts to work very well, especially when you start declaring const pointers and it gets tricky to know whether it's the pointer that's const, or whether its the thing the pointer is pointing at that is const.

int* const test; // test is a const pointer to an int

int const * test; // test is a pointer to a const int ... but many people write this as  
const int * test; // test is a pointer to an int that's const
link|flag
vote up 1 vote down

The pointer is a modifier to the type. It's best to read them right to left in order to better understand how the asterisk modifies the type. 'int *' can be read as "pointer to int'. In multiple declarations you must specify that each variable is a pointer or it will be created as a standard variable.

1,2 and 3) Test is of type (int *). Whitespace doesn't matter.

4,5 and 6) Test is of type (int *). Test2 is of type int. Again whitespace is inconsequential.

link|flag
vote up 6 vote down

This is a good reason to use separate lines for each declaration. The * has to go with the variable name if you want it to be a pointer.

link|flag
This answer is somewhat misleading in that it seems to be endorsing the idea that the whitespace between the asterisk and the type or variable name is significant. – jonner Oct 8 '08 at 0:34
vote up 10 vote down

White space around asterisks have no significance. All three mean the same thing:

int* test;
int *test;
int * test;

The "int *var1, var2" is an evil syntax that is just meant to confuse people and should be avoided. It expands to:

int *var1;
int var2;
link|flag
vote up 3 vote down

in 4, 5 and 6, test is always a pointer and test2 is not a pointer. White space is (almost) never significant in C++

link|flag

Your Answer

Get an OpenID
or

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