Possible Duplicates:
What makes more sense - char* string or char *string? Pointer declarations in C++: placement of the asterisk
I've seen mixed versions of this in a lot of code. (This applies to C and C++, by the way.) People seem to declare pointers in one of two ways, and I have no idea which one is correct, of if it even matters.
The first way it to put the asterisk adjacent the type name, like so:
someType* somePtr;
The second way is to put the asterisk adjacent the name of the variable, like so:
someType *somePtr;
This has been driving me nuts for some time now. Is there any standard way of declaring pointers? Does it even matter how pointers are declared? I've used both declarations before, and I know that the compiler doesn't care which way it is. However, the fact that I've seen pointers declared in two different ways leads me to believe that there's a reason behind it. I'm curious if either method is more readable or logical in some way that I'm missing.
It's a matter of preference, and somewhat of a holy war, just like brace style.
The style
is emphasizing the type of the pointer variable. It is saying, essentially, "the type of
somePtr
is pointer-to-someType
".The style
is emphasizing the type of the pointed-to data. It is saying, essentially, "the type of data pointed to by
somePtr
issomeType
".They both mean the same thing, but it depends on if a given programmer's mental model when creating a pointer is "focused", so to speak, on the pointed-to data or the pointer variable.
Putting it in the middle (as
someType * somePtr
) is trying to avoid committing to either one.I think putting the asterisk adjacent to the name of the variable is clearer.
You might mistakenly declare
someType* one, two;
thinking that they are both pointers but only the variableone
is a pointer;two
is just asomeType
. Declaring assomeType *one, *two
avoids this problem.Every single way I've seen ever is
because you are declaring a POINTER of type TheType. Similar declaring
would be declaring an instance variable of type TheType.
Also you can then clearly do this and have it easily readable
It doesn't matter. Someone will now come along and close the question as a dupe, and someone else will show how the
int* a
way breaks if you declare multiple variables in the same declarations while theint *a
way better reflects the syntactical structure of the code, and another guy will show that Stroustrup prefers theint* a
way.Many opinions, but no "right" way here.
It doesn't matter, it is personal preference.
Some people like to keep the type together:
Other people say that it should go next to the variable because of the following:
Over time you will just overlook this and accept both variations.
The difference arose because C++ added a stronger type system on top of C. A C programmer usually thinks in terms of "values," so
reads "the dereference of pValue is an int" whereas a C++ programmer thinks in "types" so
reads "the type pValue is pointer to int" The compiler sees no difference at all of course. However you will find that it is the C programmer who insist on "value semantics" when programming in C++.