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).
|
|
Which syntax do you prefer and why:
Assume multiple variable declarations per line are not used. (I know about the differences). |
|||
closed as subjective and argumentative by Ed Swangren, Graeme Perrow, frou, nos, Ken White Nov 2 at 20:36 |
|
|
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:
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:
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:
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 :-) |
|||
|
|
|
|
definitely char* string |
|||
|
|
|
Definitely prefer
What is |
|||
|
|
|
|
I prefer
I guess that could be because I learned C before I ever touched C++ |
|||
|
|
|
|
I prefer either, as long as it's consistent throughout. :-P |
|||
|
|
|
|
|
|
|
As an old-school C programmer, I prefer
|
|||
|
|
|
Most people prefer:
For in order to be consistent with these types of situations:
Remember, the previous is not the same as:
|
||||||||||
|
|
|
G'day,
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, |
|||
|
|
|
|
I prefer to compromise and use |
|||
|
|
|
|
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 I've never used the |
||
|
|
|
|
I have been using C for ages; I definitely prefer ' Our local coding standards also require my preferred notation (and did before I got my fingers into the definition of the standards). |
||||||||
|
|
|
I have used:
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 |
||
|
|
|
|
I would say this is preferred as it puts accent on a fact pointer is part of a type: "a pointer to char". |
||
|
|
|
|
None of the above. I use:
Uncluttered and easy on the eyes without semantic debates as to where the * goes. |
||||
|
|
|
From a semantical point of view, "char *string" better conveys the message IMO:
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. |
||||||
|
|
|
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. |
||
|
|
|
|
The first one
See Bjarne Stroustrup's choice about that :
Continued here |
||||||||
|
|
|
Then use the first methodQ
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. |
|||
|
|
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