vote up 3 vote down star
1

I know this is about as bad as it gets for "religious" issues, as Jeff calls them. But I want to know why the people who disagree with me on this do so, and hear their justification for their horrific style. I googled for a while and couldn't find a style guide talking about this.

So here's how I feel pointers (and references) should be declared:

int* pointer = NULL;
int& ref = *pointer;
int*& pointer_ref = pointer;

The asterisk or ampersand goes with the type, because it modifies the type of the variable being declared.

EDIT: I hate to keep repeating the word, but when I say it modifies the type I'm speaking semantically. "int* something;" would translate into English as something like "I declare something, which is a pointer to an integer." The "pointer" goes along with the "integer" much more so than it does with the "something." In contrast, the other uses of the ampersand and asterisk, as address-of and dereferencing operators, act on a variable.

Here are the other two styles (maybe there are more but I really hope not):

int *ugly_but_common;
int * uglier_but_fortunately_less_common;

Why? Really, why? I can never think of a case where the second is appropriate, and the first only suitable perhaps with something like:

int *hag, *beast;

But come now... multiple variable declarations on one line is kind of ugly form in itself already.

flag

@Brian: C# does indeed have such glyphs, in unsafe mode. Java doesn't have unsafe mode (at least without resorting to native code), so this is a nonissue. – Chris Jester-Young Dec 18 '08 at 8:14
@Owen: References cannot be set to null in C++, just so you know. :-) – Chris Jester-Young Dec 18 '08 at 8:16
My bad... My Java's very rusty. Heh... Figured I'd get downvoted, but twice in seven minutes, with about 20 views? Props to the anal retentive... – Owen Dec 18 '08 at 8:17
@Chris, again: Yeah... I know... I just wasn't thinking. – Owen Dec 18 '08 at 8:18
@Owen Beauty is in the eye of the beholder. Some of your 'ugly' stuff appears in many reference texts, including Stroustrup. Calling others 'anal retentive' on a post that is basically about being a style natzi is IMHO pretty weak. – Shane MacLaughlin Dec 18 '08 at 8:39
show 6 more comments

15 Answers

vote up 8 vote down check

int *ugly_but_common;

is not ugly, and neither is:

int *hag, *beast;

nor even:

int witch, *ghost, goblin; // this must really confuse you.

All of them are simply saying *ugly_but_common (or *hag or *beast, or whatever) is of int type. This is not to be confused with ugly_but_common which is of pointer-to-int type. The last witch/ghost/goblin is used in a K&R tutorial (http://www.lysator.liu.se/c/bwk-tutor.html#pointers), though with less colorful names.

This is always the style K&R uses, for the reason I explained (I don't have the book with me, so I can't give a quote. Check for yourself).

link|flag
1  
Interesting! You've expanded my mind; thank you. That's an excellent point on a different angle from which to see the declaration. Here, have an accepted answer, because this is the most enlightening view I've read yet. (I'm probably just dense though.) – Owen Dec 24 '08 at 10:05
1  
Looking back a month later I see that I was (unsurprisingly) indeed being dense. Part of the Bjarne quote from discomurray indicated the same possible emphasis of syntax. Sadly, my reading of his post was hindered by some *s being confused for markdown and creating confusing formatting. – Owen Jan 16 at 21:29
for pointers the argument is nice. C++ destroyed that nice stuff however by having "int &a", "&a" not being type of "int" :( – Johannes Schaub - litb Apr 9 at 15:17
vote up 0 vote down

Which do you prefer?

int[10] arr;
int arr[10];

In C (I can't say about C++ or C#), the first option is a syntax error, so I write my pointers as my arrays

int *ptr;
link|flag
vote up 0 vote down

There are lots of reasons why int *pi=NULL; is wrong and int* pi=NULL; is right:

1) int* is a type and you can typedef it as such if necessary (typedef int* INT_PTR;), then you can INT_PTR pi=NULL;

2) you *can* put multiple declarations on a line ... if you are a pathalogic idiot, but you'll confuse youself if you use a typedef as INT_PTR pi, pj; does declare 2 pointers

3) if you do int *pi; you will never be able to declare a constant pointer which must be delcared - int* const pi; or a constant pointer to a constant int - const int* const pi; (you could even type def this - typedef const int* const CONST_INT_CONST_PTR;)

QED there is only one right way, though you will get an awful lot of narrow minded whingers who will blindly defend their indefensible position - they should all be put in a special home for people with outdated skillsets :-)

link|flag
vote up 1 vote down

From a compiler's (or a compiler writer's) point of view, the expression "int *p" is resolved as follows:

  1. Read from left to right, find the first identifier, which is "p";
  2. Look right, there's nothing;
  3. Look left, it's a "*", so the compiler determines that p is a pointer;
  4. Look right, there's nothing;
  5. Look left, it's an "int", so the thing that gets pointed to by p is an int.

That's why you see "int *p" in a lot of C code rather than "int* p". Of course, whether you should use one style instead of another is purely a question of personal taste. Like vi and emacs thing.

BTW, I recently read a lot of C code from MS. Very ugly, consistently ugly.

link|flag
vote up 14 vote down

In regards to C++ and C

From Bjarne Himself:

Both are "right" in the sense that both are valid C and C++ and both have exactly the same meaning. As far as the language definitions and the compilers are concerned we could just as well say "int*p;" or "int * p;"

The choice between "int* p;" and "int *p;" is not about right and wrong, but about style and emphasis. C emphasized expressions; declarations were often considered little more than a necessary evil. C++, on the other hand, has a heavy emphasis on types.

A "typical C programmer" writes "int *p;" and explains it "*p is what is the int" emphasizing syntax, and may point to the C (and C++) declaration grammar to argue for the correctness of the style. Indeed, the * binds to the name p in the grammar.

A "typical C++ programmer" writes "int* p;" and explains it "p is a pointer to an int" emphasizing type. Indeed the type of p is int*. I clearly prefer that emphasis and see it as important for using the more advanced parts of C++ well.

The critical confusion comes (only) when people try to declare several pointers with a single declaration:

int* p, p1; // probable error: p1 is not an int*

Placing the * closer to the name does not make this kind of error significantly less likely.

int *p, p1; // probable error?

Declaring one name per declaration minimizes the problem - in particular when we initialize the variables. People are far less likely to write:

int* p = &i; int p1 = p; // error: int initialized by int*

And if they do, the compiler will complain.

Whenever something can be done in two ways, someone will be confused. Whenever something is a matter of taste, discussions can drag on forever. Stick to one pointer per declaration and always initialize variables and the source of confusion disappears. See The Design and Evolution of C++ for a longer discussion of the C declaration syntax.

Note: Bjarne is not the authority on style he is just a person

And as I understand it C# follows a more C++ style. I think the style you use is is about what you are trying to say. An the style you use if more likely a frame of mind that you have while writing your code.

int* p;  // OO Style, Type emphasis
int *p;  // Procedural style, Expression emphasis
int * p; // Unconventional Style, No emphasis
link|flag
Good find; what's the source? – Owen Dec 19 '08 at 5:36
Bjarne's Quote is from 'Bjarne Stroustrup's C++ Style and Technique FAQ' @ research.att.com/~bs/bs_faq2.html – discomurray Dec 22 '08 at 18:06
vote up 7 vote down

According to the AV rule 62 of JFS C++ Coding Standards

The dereference operator '‘’' and the address-of operator ‘&’ will be directly connected with the type-specifier.

Rationale: The int32'' p; form emphasizes type over syntax while the int32 ''p; form emphasizes syntax over type. Although both forms are equally valid C++, the heavy emphasis on types in C++ suggests that int32'' p; is the preferable form.

Examples:

  • int32* p; // Correct
  • int32 *p; // Incorrect
  • int32* p, q; // Probably error. However, this declaration cannot occur under the one name per declaration style required by AV Rule 152.

Ps: will rules are "expected to be followed".

link|flag
vote up 0 vote down

Each declaration gets it own line. I use the * symbol next to the variable.

int *pointer = new int(1);
link|flag
vote up 3 vote down

I'm one of those "evil" guys who like the free standing asterisk. I like it because it looks best in my eyes. Of course you can argue that int* should be read as pointer to int, but this, as mentioned before, doesn't work with multiple declarations. And since we all know the common pitfalls and they also lead to compile errors and not to hidden bugs, it is simply a matter of taste and what you are used to.


char *start, *end;   // or
char * start, * end; // looks simply nicer then
char* start,* end;

And I don't think that every variable declaration belongs in its own line. In this case start and end are belonging together. But this is also a matter of taste and habit.

link|flag
vote up 1 vote down

Currently living in the MFC world, where the hungarian notation is quite common, I use to handle it the same way as you, Owen.

My code then looks slightly different with pointer variables having a p prefix:

int* pFoo = NULL;

With the prefix it would simply be redundant to put the asterisk next to the variable name.


I also agree with you on the rule not to declare several variables on one line for some reasons:

  • The obvious: No questions about the type of variables arise when declaring pointers and references.
  • It encourages declaring a variable right where it's needed because one doesn't save any typing effort anyway. This helps to avoid C-style declarations at the beginning of a function, which I believe is not a good practice.
  • It's easier to change the type of a variable.
link|flag
Further to the point of declaring variables right where they're needed, having a single line may make one more likely to provide initializations provided, as putting initializations on a line with multiple declarations can become particularly illegible and may be shied away from for that reason... – Owen Dec 18 '08 at 9:35
vote up 2 vote down

As long as the source code sticks to one notation or the other I don't really mind... it's when the source mixes both methods that it becomes an annoyance for me.

link|flag
vote up 2 vote down

int* pStuff ....... pStuff's type is "pointer to an int"

int stuff ........ stuff's type is "int"

Especially true since you can write

typedef int* pInt;

pInt pStuff;

link|flag
This emphasizes quite well what I've meant by "it modifies the type"... – Owen Dec 18 '08 at 9:29
WOW! I never actually thought about that, but its a great point towards int* pStuff – Robert Gould Dec 18 '08 at 10:13
What about leaving pointers out of typedef statements? – TomWij Dec 18 '08 at 13:06
@Tom: What about it? If you mean leaving them out would be a good idea, then I concur. If I see a type called something like IntPtr my first thought is that it's a smart pointer of some kind, not just a typedeffed int*. – Owen Dec 18 '08 at 14:50
vote up 2 vote down

For clarity I sometimes use tabs between types and variable names with I declare structs:

struct something_s {
    int            *foo;
    unsigned int   bar;
};

is clearer than:

struct something_s {
    int *foo;
    unsigned int bar;
};

for my eyes.

So putting the * near the variable name istead of the type is more convenient for me.

link|flag
I agree with the readability. However there is one minor inconvenience: if you change the 'unsigned int bar' variable, you not only have to change this line but also the line above and below to fix the indentation.So if you use version control, make sure you disable whitespace checking when compare. – Roalt Dec 18 '08 at 9:23
The indentation doesn't impact where the * should go... In fact this scenario is one where having the * on the right bugs me most! Sometimes in a function declaration with this formatting, I'll look down the left column to see what types are required; I'll only see *'s if they're on the left. – Owen Dec 18 '08 at 9:27
vote up 3 vote down

I think that * refers to the type and always write Type* t.

Type t;  // type is 'Type'
Type* t; // type is 'a reference to Type'

So *t means dereferencing.

link|flag
vote up 12 vote down

In C and C++ the * modifies the variable, not the type and belongs with the variable, as is proved by:

int *abc,def;

What's def, an int or a pointer?

In C# it modifies the type and belongs with the type.

In Java, there's not such notion. I don't follow your 0/NULL/null remark.

link|flag
Yeah... I removed that remark. It's late and apparently my brain's off. Enough to post a subjective question on SO, at least. As for your example of potential confusion, that's what I was alluding to in the last example I gave. – Owen Dec 18 '08 at 8:23
And wrt your first line, as I keep repeating, style is about semantics, and semantically the type is what is modified: abc is being declared as a "pointer to an int"—that's its type. (This is as opposed to the other use of *, which is an operator modifying the variable, dereferencing it.) – Owen Dec 18 '08 at 8:29
But the * isn't applied to the type (else it would impact all variables declared in that statement), it is applied to abc only; you might think it ought to be applied to the type, but the coding style should reflect the reality of the language, not what you wish the reality to be. – Software Monkey Dec 18 '08 at 9:04
Syntax vs (my favourite word, apparently) semantics... Style should reflect what my intent is when I write a line of code. Just because a language allows or imposes something doesn't mean it's what should be taken as gospel. I can say i=j=k=0; or if(somePointer) {...} — doesn't mean it's good style. – Owen Dec 18 '08 at 9:12
I agree - but to choose a style that infers an incorrect binding is misleading to the programmer who comes after you. What if someone who is less experience sees "int* abc;" and adds the "...,def;" expecting def to be a pointer? – Software Monkey Dec 18 '08 at 9:20
show 5 more comments
vote up 2 vote down

In C# code, I prefer the int* x; to int *x; as * belongs to the type, but in C/C++, * belongs to the variable, not the type, so the int *x; habit will be less prone to errors.

link|flag
Semantically I'd still say it goes with the type in C/C++... – Owen Dec 18 '08 at 8:14
But, if you write int* x, y; to declare x,y as pointers, you'd get into trouble. – Mehrdad Afshari Dec 18 '08 at 8:16
Yeah, that's what I was addressing in my last couple of paragraphs. I figure semantics should be what dictates style, so if that means you have to implement another rule of only one declaration per line, then so be it. – Owen Dec 18 '08 at 8:21
I agree with Owen, you are declaring a "pointer to int", to me semantically it belongs with the type. – ceretullis Dec 19 '08 at 3:42

Your Answer

Get an OpenID
or

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