vote up 5 vote down star

Which syntax do you prefer and why:

char* string;
char *string;

Assume multiple variable declarations per line are not used. (I know about the differences).

flag
2  
Possible duplicate: stackoverflow.com/questions/377164 – pmg Nov 2 at 19:17
1  
subjective as well – TheSamFrom1984 Nov 2 at 19:18
1  
@pmg: my question is more narrow. I flagged it as a poll because I'd like to see what style the community prefers (via voting). I will mark it as community wiki. – Johannes Rudolph Nov 2 at 19:20
1  
This has relevance to programming style and as such is relevant. Boy the S&A police are getting really anal! – Rob Wells Nov 2 at 19:25
Consistence is key! You declare arrays with the "extra stuff" near the name of the object (char buffer[100]), so ... declare pointers with the "extra stuff" near the name of the object: char *pchar. Oh! And avoid naming objects starting with "str" followed by a lowercase letter. – pmg Nov 2 at 19:28
show 5 more comments

closed as subjective and argumentative by Ed Swangren, Graeme Perrow, frou, nos, Ken White Nov 2 at 20:36

19 Answers

vote up 2 vote down

I started with this syntax in C, where (even though I always used the one-declaration-per-line rule) you must keep the * with the variable name:

char *string1, *string2;

But I still prefer this notaiton in C++ as well. At this level, "char *" is a poor example - a (Vehicle *) illustrates it much better, because in C++ we're usually concerned with objects, not chars.

In this case, I prefer to think that I am working on an object, which is a Vehicle. I can additionally specify the "means of access" (level of indirection) by using a (Vehicle), a (pointer to a Vehicle) a (pointer to a pointer to a Vehicle), a (reference to a Vehicle), a (reference to a pointer to a Vehicle), a (reference to a pointer to a handle to a Vehicle) etc:

Vehicle car;
Vehicle *pCar;
Vehicle **ppCar;

What I like with this style is that the thing I am manipulating is a Vehicle. It's not a VehicleStar or a VehicleStarStar. At all times I am working with a Vehicle, and the level of indirection (and whether that is a pointer or reference or handle) is a convenience of the way in which I reference and pass that Vehicle around.

Then, when I (de)reference my Vehicle, the level of indirection is irrelevant - what I am interested in is the Vehicle. For example, in this line:

car = *pCar = **ppCar;

I am not converting types (VehicleStar to Vehicle), which implies I am somehow changing something, I am simply dereferencing a single type, Vehicle.

Of course, many would disagree :-)

link|flag
vote up 0 vote down

definitely char* string

link|flag
please delete this post (already mentioned, no arguments) – Johannes Rudolph Nov 2 at 21:13
vote up 1 vote down

Definitely prefer

char* string

What is string? Well, it's a pointer-to-char of course. When you declare string, you declare a pointer. You don't declare a char at all, and one isn't put on the stack.

link|flag
vote up 0 vote down

I prefer

char *string

I guess that could be because I learned C before I ever touched C++

link|flag
vote up 1 vote down

I prefer either, as long as it's consistent throughout. :-P

link|flag
vote up 3 vote down

char *string is the conventional wisdom

This was how dmr and Ken Thompson wrote the first code, and how almost all of the original BSD and AT&T Unix code was written, and how K&R formatted the classic book, I think.

It is how the Linux kernel is written.

For some reason the FSF has a code style, and it is hugely different from all of the above. It's kind of "the other big camp" in the style war. But even there the * goes on the right.

It is the conventional style, for whatever that's worth.

link|flag
vote up 3 vote down

As an old-school C programmer, I prefer char *string since the language syntax binds the * to the declarator, not the type specifier. It also more closely follows the "declaration mimics use" paradigm; the type of the expression *string is char, as in

char c = *string;
link|flag
of course, this other use matches the other form of declaration: char* c = string; – rlbond Nov 2 at 20:31
vote up 9 vote down

Most people prefer:

int *p;

For in order to be consistent with these types of situations:

int *p, *q, *r;

Remember, the previous is not the same as:

int *p, q, r;
link|flag
3  
+1 Regardless of what people prefer, clarity is everything, and the third example shows why this style is the clearer of the two. Compare int* p, q, r;; with this form, it's too easy for a C novice to assume that p, q and r are all pointers. – Steve Melnikoff Nov 2 at 20:34
int *p, *q, *r; shows why this is the only sane choice, in my opinion. Because it makes sense in /all/ situations. :) – pbos Nov 2 at 20:45
why didn't you care to fully read my question? "Assume multiple variable declarations per line are not used. (I know about the differences)." – Johannes Rudolph Nov 2 at 21:12
@Johannes: because the reason for doing this with a single declaration per line derives from when you're doing more than one per line. – Steve Melnikoff Nov 2 at 21:24
vote up 1 vote down

G'day,

char* string

is the way for me as well when only a single declaration per line is being used.

The variable "string" has a type of pointer to char. This style also helps with the multiple declaration problem as an added bonus by preventing the accidental declarations of variables of type char.

Just my 0.02.

cheers,

link|flag
vote up 0 vote down

I prefer to compromise and use char*string;

link|flag
vote up 0 vote down

I actually thought about my preference often but I always end up finding that randomly I use both of them, but usually I alway stick with Class* ptr_name when declaring classes while changing from char *name and char* name while using basic data types.

I've never used the char * name syntax thou

link|flag
vote up 2 vote down

I have been using C for ages; I definitely prefer 'char *p;' to 'char* p;'.

Our local coding standards also require my preferred notation (and did before I got my fingers into the definition of the standards).

link|flag
not a very strong argument :-) – Johannes Rudolph Nov 2 at 19:22
2  
Yes, please explain why you prefer this method. – Ether Nov 2 at 19:31
(a) K&R write that way; (b) it conforms to the original design of the C type language - you have the type information and the declarator, and the * belongs in the declarator; (c) it is the way the code I work with is written; (d) it is the way the code I write is written. – Jonathan Leffler Nov 2 at 20:45
vote up 0 vote down

I have used:

char * string; // for declarations
*string; // For de-references

I liked the difference between the declaration and dereference even though it would be pretty obvious. Which is why I don't think I would want char *string for declarations.

Never thought of char* string, but think I am going to switch to that because it will make the difference more pronounced, thanks!

link|flag
vote up 0 vote down
char* string;

I would say this is preferred as it puts accent on a fact pointer is part of a type: "a pointer to char".

link|flag
vote up 5 vote down

None of the above. I use:

char * string;

Uncluttered and easy on the eyes without semantic debates as to where the * goes.

link|flag
I like that answer for its unorthodox approach :-) – Johannes Rudolph Nov 2 at 19:18
I also prefer "std::string & refString" for C++ references. Consistent and easy to parse quickly. – Sid Farkus Nov 2 at 20:33
vote up 0 vote down

From a semantical point of view, "char *string" better conveys the message IMO:

  1. "char" is the type that

  2. "*string" points to

Because it could be "char *whatever" i.e. an array of char to whatever data. Granted that adding a meaningful identifier helps but this yet another layer.

link|flag
2  
But "string" is not a pointer -- that's just a semantic meaning you are choosing to place on that value. It is actually just a plain old variable, whose type is char*. – Ether Nov 2 at 19:32
...that's why I made the additional distinction between the "identifier" (i.e. variable) and the rest of the expression. – jldupont Nov 2 at 19:42
vote up 1 vote down

I agree with Bjarne Stroustrup on this matter. It makes the most sense.

Of course, you should follow whatever idiom your programming language/team/environment has and uses.

link|flag
vote up 12 vote down

The first one

char* string; // 'char*' is clearly the type of string

See Bjarne Stroustrup's choice about that :

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.

Continued here

link|flag
Is this a C++ answer? :P – pmg Nov 2 at 19:33
it is possible in c and c++, so please, don't mind :-) – Johannes Rudolph Nov 2 at 19:45
1  
char* isn't a type, though! – strager Nov 2 at 20:37
vote up 2 vote down

Assume multiple variable declarations per line are not used. (I know about the differences).

Then use the first methodQ

char* string;

it clearly denotes the type as pointer by grouping the char and the *

The second method I have only seen used when multiple variable definitions per line are used and you want to mix and match char and char* on that one line. This IMO is rather confusing.

link|flag

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