vote up 6 vote down star
1

My co-worker is 0 for 2 on questions he has inspired (1, 2), so I thought I'd give him a chance to catch up.

Our latest disagreement is over the style issue of where to put "const" on declarations.

He is of the opinon that it should go either in front of the type, or after the pointer. The reasoning is that this is what is typically done by everyone else, and other styles are liable to be confusing. Thus a pointer to a constant int, and a constant pointer to int would be respectively:

const int *i;
      int * const i;

However, I'm confused anyway. I need rules that are consistent and easy to understand, and the only way I can make sense of "const" is that it goes after the thing it is modifying. There's an exception that allows it to go in front of the final type, but that's an exception, so it's easier on me if I don't use it.

Thus a pointer to a constant int, and a constant pointer to int would be respectively:

int const * i;
int * const i;

As an added benifit, doing things this way makes deeper levels of indirection easier to understand. For example, a pointer to a constant pointer to int would clearly be:

int * const * i;

My contention is that if someone just learns it his way, they'll have trouble figureing out wth the above works out to.

The ultimate issue here is that he thinks that putting const after int is so unspeakably ugly, and so harmful to readability that it should be banned in the style guide. Of course, I think if anything the guide should suggest doing it my way, but either way we shouldn't be banning one approach.

Edit: I've gotten a lot of good answers, but none really directly address my last paragraph ("The ultimate issue"). A lot of people argue for consistency, but is that so desirable in this case that it is a good idea to ban the other way of doing it, rather that just discouraging it?

flag

60% accept rate
Another important point is, what is more important? The fact that it's an int, or the fact that it's constant? – rlbond Jun 12 at 18:22
@rlbond: That's a good question...so good I'm not sure I can answer it. – T.E.D. Jun 12 at 18:29
@T.E.D. Regarding your edit: what's the point of the style guide? Is it a suggestion that developers are to ignore at their leisure, or is it a rule that they are expected to follow? If you simply discourage particular style, then wouldn't that mean it's a suggestion? – atk Nov 13 at 23:00
@atk: In this case, I believe it is the latter. – T.E.D. Nov 16 at 15:24

12 Answers

vote up 17 vote down

The most important thing is consistency. If there aren't any coding guidelines for this, then pick one and stick with it. But, if your team already has a de facto standard, don't change it!

That said, I think by far the more common is

const int* i;
int* const j;

because most people write

const int n;

instead of

int const n;

A side note -- an easy way to read pointer constness is to read the declaration starting at the right.

const int* i; // pointer to an int that is const
int* const j; // constant pointer to a (non-const) int
int const* aLessPopularWay; // pointer to a const int
link|flag
7  
+1 for the read from the right tip. – Alex B Jun 12 at 18:10
2  
Do you think more people do it the other way? Personally, I've seen const type* much more often. – rlbond Jun 12 at 18:10
11  
Well - not the most scientific result, however, google code search has 41 results 'int const *' and 824 for 'const int *' (searching with lang:c++) – Richard Corden Jun 12 at 18:17
2  
@finnw: Take it up with Stroustrup, who does it that way as well. And yes, it is parsed that way, but if you follow the "one declaration per line" rule, it doesn't matter. Moreover, the * with the int emphasizes that the type is an int*. Finally, if you're going to give someone -1 over such a syntactic difference which is widely used by C++ coders, I think you're missing the point of Stack Overflow and abusing your voting power. – rlbond Jun 20 at 21:52
1  
+1 for the phrase "abusing your voting power"! – Max Lybbert Jul 7 at 17:55
show 5 more comments
vote up 7 vote down

There's a class of examples where putting the const on the right of the type also helps avoid confusion.

If you have a pointer type in a typedef, then it is not possible to change the constness of the to type:

typedef int * PINT;
const PINT pi;

'pi' still has the type 'int * const', and this is the same no matter where you write the 'const'.

link|flag
That's a damn good point. – T.E.D. Jun 12 at 18:27
2  
I don't think that's so confusing. Your example is a const (int*), since the typedef acts as a grouping -- similar to (int*) const. In contrast, a pointer to const is a (const int)* or an (int const)* – rlbond Jun 12 at 20:30
Its not confusing if you can look at PINT and say: "It's a typedef therefore the const doesn't apply to the pointed to member, because I know that's what the standard says about typedefs.". What if PINT was a macro? Then the rules are different and the CV specifier will apply to the to type. Within reason your code should be clear and as unambiguous as you can make it. – Richard Corden Jun 17 at 7:40
vote up 5 vote down

I was at a conference where Bjarne Stroustrup was giving a presentation, and he used something like const int* i; Someone asked him why this style and he responded (paraphrasing): "people like to see const first when something is constant".

link|flag
3  
Sadly, he didn't apply that principle to the syntax of "const" in the general case, or we wouldn't be having this discussion. – T.E.D. Jun 12 at 18:24
Stroustrup may not have had much to do with the syntax of "const", as C++ just took it over from C. It wasn't, as I remember, part of K&R C, but was introduced more or less with the 1990 standard. – David Thornley Jun 12 at 20:09
@David C++ dates from 1983, and the predecessor "C with classes" from the late seventies I think. C++ had const first, it was added to C with C90 – Pieter Jun 12 at 20:59
IIRC, C++ got const after C considered -- end eventually rejected -- "readonly". – Max Lybbert Jul 7 at 17:57
Bjarne claims that he invented const: research.att.com/~bs/bs%5Ffaq2.html#constplacement/…. This article also mentions that Bjarne initially considered "readonly". – nobar Nov 13 at 1:45
vote up 4 vote down

People typically use "const int* blah" because it reads well as English. I wouldn't underestimate the usefulness of that.

I find that the "int * const blah" variation is rare enough that it's not typically useful to make the more common definition backwards. I am, in general, not a fan of anything that even slightly obscures code in the general case, though it might provide some nominal benefit in the exceptional case.

See also "if (1 == a)". Some people really enjoy writing code that doesn't read as English. I am not one of those people.

Really, though, the rules behind const are simple. Look to the left, then to the right. So simple that I wouldn't think it's worth much attention in a style guide.

link|flag
This issue actually came up in the argument. As an old Ada coder I find it kind of funny. If code not reading well in English is a problem for you, you have no business whatsoever using a C-syntax language. It wasn't designed for English-like readability, and trying to impose same on it is just going to drive you batty. – T.E.D. Jun 12 at 18:13
1  
As an old C++ coder, I believe that if the small inconsistency in using const on the left side in the common case is a problem for you, you have no business whatsoever using a C-syntax language. It wasn't designed for consistency and trying to impose some on it is just going to drive you batty. Seriously, you and your friend have already wasted more time arguing about it than would be saved by choosing either one of your suggested standardizations. Fire anyone that can't understand both syntaxes and be done with it. – Dan Olson Jun 13 at 5:29
@T.E.D: I think that's a strawman argument. Just because "perfect" readability isn't possible, we can still strive to make it a bit more readable. In particular, why not make variable declarations look the same way as they're spoken, when we have the option? – jalf Aug 21 at 10:30
@jalf: We don't have that option. The way you'd say it in English would have the type last (like in Ada). ie: "Blah is a constant integer". How does the above even come close to English? "Constant integer pointer to is blah". Only if you are Yoda. Now that I see it in black-and-white, I think you've managed to talk me into voting down this answer. – T.E.D. Aug 26 at 14:19
@Dan Olson: Sorry about the late downvote. I suppose there could be a legitimate English sentence that would use that word order as you claim, but I don't see it. If you can edit your answer to include that sentence, I'll remove the downvote. – T.E.D. Aug 26 at 14:23
show 4 more comments
vote up 2 vote down

Putting "const" after the type declaration makes a whole lot more sense once you train yourself to read your C++ type declarations from right to left.

I'm going to peg your cow-orker at 0-for-3 :)

link|flag
vote up 2 vote down

The ultimate issue here is that he thinks that putting const after int is so unspeakably ugly, and so harmful to readability that it should be banned in the style guide

Really?

Show me a programmer who gets bogged down when he sees:

int foo() {
}

vs

int foo()
{
}

...and I'll show you a programmer who doesn't pay close enough attention to detail.

No professional programmer worth his salt will have a problem with superficial differences in style.

EDIT: It is true that const int* and int* const don't mean exactly the same thing, but that wasn't the point. The point made by OP's coworker was that differences in style make code difficult to understand & maintain. It is this claim I disagree with.

link|flag
1  
Show me a programmer who thinks those mean the same thing, and I'll show you a programmer who doesn't pay close enough attention to detail. – David Thornley Jun 12 at 20:07
True they don't mean the same thing, but that wasn't the argument. The argument was that the difference in style is "so harmful to readability" that it should be outlawed. If you don't like the const int* vs int* const argument, fine. We could extend the conversation to be about curly braces. My claim is that no good programmer will have a problem understanding code because of a style difference. So don't sweat the small stuff. – John Dibling Jun 12 at 20:15
1  
Actually, the root of the difference is "const int*" vs. "int const *" – T.E.D. Jun 12 at 20:53
vote up 2 vote down

I hope this explanation from B. Stroustrup's FAQ on Style & Techniques will give you a definite answer.

Bjarne Stroustrup's C++ Style and Technique FAQ

I personaly prefer:

int const* pi;
int* const pi;

Because const identifies the left token which is intended to be const.

And you definitely keep the same consistency when using smth like that:

int const* const pi;

Instead of writing inconsistently:

const int* const pi;

And what happens if you have a pointer to pointer and so on:

int const* const* const pi;

Instead of:

const int* const* const pi;

Regards,

Ovanes

link|flag
vote up 1 vote down

While there is no meaningful difference between const int and int const (and I've seen both styles in use), there is a difference between const int * and int * const.

In the first, you have a pointer to a const int. You can change the pointer, but you can't change the value it points to. In the second, you have a const pointer to int. You can't change the pointer (hope it's initialized to your liking), but you can change the value of the pointed-to int.

The proper comparison is with const int * and int const *, which both are pointers to a const int.

Remember that the * doesn't necessarily work as you might like. The declaration int x, y; will work as you expect, but int* x, y; declares one pointer to int, and one int.

link|flag
vote up 1 vote down

Rules are good to follow. Simpler rules are better. Const goes to the right of what's const.

Take this declaration:

int main ( int const argc , char const * const * const argv ) ...

link|flag
vote up 0 vote down

Personally I (and it is a personal preeference) I finding reading type declarations from right to left the easiest. Especially when you start throwing references into the mix.

std::string const&  name = plop; // reference to const string.

const std::string&  flame =plop; // reference to string const;
                                 // That works better if you are German I suppose :-)
link|flag
of course, you can also say const std::string&, which reads fine from left to right. – rlbond Jun 12 at 18:12
Personally the english does not read as well (but it works). – Martin York Jun 12 at 18:25
My coworker happens to know German, so this might be part of the issue. :-) – T.E.D. Jun 12 at 18:31
vote up 0 vote down

I agree with both of you. You should put the const after the type. I also find looking at it an abomination that must be destroyed. But my recent foray into the wonders of const value parameters has made me understand why putting the const second makes sense.

int *
int const *
int * const
int const * const

Just looking at that has the hairs on my neck standing. I'm sure it would confuse my co-workers.

EDIT: I was just wondering about using this in classes:

class Foo {
    Bar* const bar;
    Foo(const Foo&) = delete; // would cause too many headaches
public:
    Foo() : bar(new Bar) {}
    ~Foo() { delete bar; }
};

bar in this example is functionally equivalent to Bar& but it is on the heap and can be deleted. For the lifetime of each Foo, there will be a single Bar associated with it.

link|flag
vote up 0 vote down

I like to to use the following form for declaring "manifest constants". In this case, the value itself is a constant.

const int i = 123;

For declaring references which will not be used to modify the value, I use the following form which emphasizes the fact that the identifier is a "constant reference". The referenced value may or may not be a constant.

void fn( int const & i );

For pointers, I use the same form that I use for references, for essentially the same reason (although the term "constant pointer" seems a little more ambiguous than "constant reference").

void fn( int const * i );

Also, as another poster noted, this form remains consistent when you have multiple levels of indirection.

void fn( int const * const * i );

The final scenario, where you are declaring a pointer which is constant is pretty rare in my experience with C++. In any case, you don't really have any choices here.

void fn( int * const i );

...unless you use a typedef.

typedef int * IntPtr;

void fn1( const IntPtr i );
void fn2( IntPtr const i );

One final note: Unless you are working in a low-level domain, most C++ code should never declare a pointer. Therefore, that aspect of this discussion is probably more relevant to C.

link|flag
That's totally not true! There are plenty of uses for pointers. For example, a pointer to a choice of local variables. – rlbond Nov 13 at 6:05
@rlbond: I'm not sure I understand your example, but I'm guessing that a reference would work for that. – nobar Nov 13 at 16:34
@rlbond: You're right that pointers have many uses. It's just that C++ gives you better (safer) ways to do what pointers did in C. C++ is a multi-paradigm language, and using the low-level (pointer-based) paradigm is important for some purposes, but in most cases, you're probably better off trying to minimize the use of raw pointers in favor of higher-level abstractions. – nobar Nov 13 at 16:35

Your Answer

Get an OpenID
or

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