What are the known shortfalls of const in C++ and C++0x?
|
The two main issues that I have seen frequent complaints about in newsgroups, are
I think the latter could/should be supported by the language. Possibly in conjunction with support for covariant member function implementations, because both need some way to pick up the type of the A third issue is that Cheers & hth., |
|||||||||||||||||||||
|
|
The only thing wrong with |
||||
|
The main problem is that you have to write it. It should be the default, and all mutable variables or parameters should be specified explicitly. |
|||||||||||||||||||||
|
|
What's wrong with
Migrating to C++ from a language that has no const concept is quite hard, any many fail to see the point. |
|||||||||||||||||
|
|
The problem with const is the programmers that use it incorrectly our inconsistently |
|||
|
|
|
One thing that is "wrong" is that you cannot convert T** to T const * const * which should be allowed because it is not dangerous. Not allowing T** to convert to T const ** is correct, that conversion is not valid. I have sometimes mentioned that const actually is a cheap way to "split" your interface into read-only methods and write methods. It would probably be impractical in C++. It would be more practical in Java to have ReadOnly versions of collections though, where they don't have const and where their collection types are more object-orientated. const-ness does not propagate: The issue here is that if I pImpl my class, the constness is not "checked" by the compiler, i.e. my interface class can have a "const" method call a non-const method on the pImpl and the compiler won't complain. That is because the only thing my const method is guaranteed not to do is change the pointer to point to a different object, and my pImpl is never going to change. It could even be a const pointer (not pointer to const). The lack of proper co-variance between |
|||||||||||
|
|
"issues"? If you aren't going to be modifying the value of a passed pointer (it is used purely for pass-by-reference input to a function), mark it is Modern versions of gcc have support for warning when you try to cast a The only thing to watch out for is exactly what you are marking |
|||
|
|
Most of the answers below state things such as "what is wrong with |
||||
|
|
|
Yet there are two issue I've had with
|
|||
|
|
|
Another problem that has not been mentioned yet is the possibility for a badly designed interface to subvert const (even in the absence of casts). Example:
The intransitive nature of const means that it is possible to have an interface where a non-const reference to an object can be obtained from a const reference to an object. This is something to be careful of when designing interfaces. |
||||
|
|
|
One problem is that the language also lets you const_cast it away, which defeats the purpose of using const in the first place. |
|||||||||||||||||||||
|
|
One thing is that it is still possible subvert it. i.e. it is still legal to do something like this:
You can even use things like This is a trade-off between having the compiler enforce Which leads to another limitation, in that it has not been universally embraced, which is in part due to another problem, which is that using |
|||||||||
|
constis that its readiness and undertandiness varies widely depending on the level of the C++ programmer, (some confusion about to which elementconstdoes apply in a complex declaration, for instance). Besides it is part of the language, and should be used - as long as the book from B.Stroustrup has been read :-) – ring0 Jan 12 '11 at 14:37