vote up 8 vote down star

In my experience, everyone names variables like this:

int *myVariable;

Rather than like this:

int* myVariable;

Both are valid. It seems to me that the asterisk is a part of the type, not a part of the variable name. Can anyone explain this logic?

flag

6 Answers

vote up 28 vote down check

They are EXACTLY equivalent. However, in

int *myVariable, myVariable2;

It seems obvious that myVariable has type int*, while myVariable2 has type int. In

int* myVariable, myVariable2;

it seems obvious that both are of type int*, but myVariable2 does NOT have this type.

Therefore, the first programming style is more intuitive.

link|flag
3  
perhaps but I wouldn't mix and match types in one declaration. – BobbyShaftoe Dec 30 '08 at 3:13
vote up 14 vote down

If you look at it another way, *myVariable is of type int, which makes some sense.

link|flag
This is my favorite explanation, and works well because it explains C's declaration quirks in general--even the disgusting and gnarly function pointer syntax. – Benjamin Pollack Dec 29 '08 at 19:29
It's sort of neat, since you can imagine there isn't any actual pointer types. There are only variables that, when appropriately referenced or dereferenced, gives you one of the primitive types. – biozinc Dec 29 '08 at 19:34
That's actually an excellent point, thanks! – ReaperUnreal Dec 29 '08 at 21:02
vote up 0 vote down

Because it makes more sense when you have declarations like:

int *a, *b;
link|flag
vote up 0 vote down

A lot of it is personal preference and style. I've seen both but use the former (int *myVariable).

However, there are some technical reasons to put the asterisk with the name. If your coding conventions/style allows more than one declaration per line you may write:

int valA, valB;
int *pValA, *pValB;

pValA and pValB are definitely pointers to int types.

int valA, valB;
int* pValA, pValB;

pValA is a pointer to an int type; what's pValB?

Your answer may depend on your compiler but in most modern compilers pValB is a straight-up int . Keeping the asterisk with the name helps the person who comes after you or you in 6 months.

Better yet, only declare one variable per line.

link|flag
vote up 4 vote down

Because the * binds more closely to the variable than to the type:

int* varA, varB; // This is misleading

However, even the best single-line declarations seem counter-intuitive to me, because the * is part of the type. I like to do this instead:

int* varA;
int* varB;

As usual, less the compact your code, the more readable it is. ;)

link|flag
vote up 3 vote down

That's just a matter of preference.

When you read the code, distinguishing between variables and pointers is easier in the second case, but it may lead to confusion when you are putting both variables and pointers of a common type in a single line (which itself is often discouraged by project guidelines, because decreases readability).

I prefer to declare pointers and references with their corresponding sign next to type name, e.g.

int* pMyPointer;
int& myReference;
link|flag

Your Answer

Get an OpenID
or

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