I always mess up how to use it correctly. Is there a set of rules defining what you can and cannot do?
I want to know all the Do's and all DoNOTs in terms of assignments, passing to the functions, etc.
Thanks
|
|
Read it backwards...
Now the first const can be on either side of the type so:
If you want to go really crazy you can do things like this:
And to make sure we are clear on the meaning of const
|
|||||||||||||||||||
|
|
I think everything is answered here already, but I just want to add that you should beware of typedefs! They're not just text replacements. For example:
The type of |
|||||||||
|
|
Like pretty much everyone pointed out: [18.5] What's the difference between "const Fred* p", "Fred* const p" and "const Fred* const p"?
|
|||
|
|
|
Simple Use of ‘const’ The simplest use is to declare a named constant. To do this, one declares a constant as if it was a variable but add ‘const’ before it. One has to initialise it immediately in the constructor because, of course, one cannot set the value later as that would be altering it. For example,
will create an integer constant, unimaginatively called ‘Constant1’, with the value 96. Such constants are useful for parameters which are used in the program but are do not need to be changed after the program is compiled. It has an advantage for programmers over the C preprocessor ‘#define’ command in that it is understood & used by the compiler itself, not just substituted into the program text by the preprocessor before reaching the main compiler, so error messages are much more helpful. It also works with pointers but one has to be careful where ‘const’ to determine whether the pointer or what it points to is constant or both. For example,
declares that Constant2 is variable pointer to a constant integer and
is an alternative syntax which does the same, whereas
declares that Constant3 is constant pointer to a variable integer and
declares that Constant4 is constant pointer to a constant integer. Basically ‘const’ applies to whatever is on its immediate left (other than if there is nothing there in which case it applies to whatever is its immediate right). ref: http://duramecho.com/ComputerInformation/WhyHowCppConst.html |
|||
|
|
|
Rule is "const" apply to what preceed it immediately. Exception, a starting const applies to what follow.
Edit: for the do and don't, if this answer isn't enough, could you be more precise about what you want? |
||||
|
|
|
This question shows precisely why I like to do things the way I mentioned in my question is const after type id acceptable? In short, I find the easiest way to remember the rule is that the "const" goes after the thing it applies to. So in your question, "int const *" means that the int is constant, while "int * const" would mean that the pointer is constant. If someone decides to put it at the very front (eg: "const int *"), as a special exception in that case it applies to the thing after it. Many people like to use that special exception because they think it looks nicer. I dislike it, because it is an exception, and thus confuses things. |
|||||
|
|
There are many other subtle points surrounding const correctness in C++. I suppose the question here has simply been about C, but I'll give some related examples since the tag is C++ :
Afaik, there are no const functions in C, non-member functions cannot themselves be const in C++, const methods might have side effects, and the compiler cannot use const functions to avoid duplicate function calls. In fact, even a simple |
|||
|
|