Re: Const Considerations
Craig wrote:
Const usage may be less consistent in fields where the developers are
not trained computer scientists, or precisely where software
development is not their main skill area.
I think even there, it depends on the age of the programmers.
Const correctness is an integral part of C++, and anyone
learning C++ today, even on the side, learns it as such, and the
question as to whether it is even possible to program without it
doesn't occur.
Yep, it does. If you are working with your own code and not having to
interface with other libraries, etc., it is entirely possible to omit
const from your function parameters and member functions themselves and
everything will compile and run just fine. I don't condone this, but my
main point is that it is possible and standard conformant to do so, it
is just poor style and discards a lot of the power of C++.
You might forget it occasionnally---I do myself. But if you've
learned C++ from any of the standard texts recently, you've been
exposed to const correct code, and it shouldn't occur to you
that C++ could be written otherwise.
But that's today---programmers who learned C or
C++ before about 1995 may not have learned it this way, and as
long as they are not professional programmers, and what they
learned works, they will doubtlessly continue to use what they
learned.
Yep, and this is the main problem.
Do you mean, perhaps, that many of the younger programmers are
learning C++ from their older collegues, and not from the
standard texts? That would, of course, be a problem.
Of course, there are still compilers out there which don't
enforce this rule, or even generate a warning, so if the group
is using only these compilers, this motivation to change might
not be there.
And this is reasonably likely in many groups who are trying to solve
specific problems using specific hardware. Scientific groups often fall
into this category, since they are writing code for a specific
supercomputing platform to which they have access. They are then at the
mercy of the one compiler they use, and the compiler may not always be
mainstream or particularly good at providing warnings. Even mainstream
compilers such as MSVC sometimes only issue a diagnostic at high
warning levels (as you also stated), which just makes this situation
more likely to persist.
I know that a lot of people aren't concerned with portability.
For the most part, I think they come in two groups: those for
whom Microsoft is the entire world -- they code in VC++, and not
in C++:-) -- and those, like you say, who are targetting a very
specific platform. In the latter group, I would expect g++ to
be the most widely used compiler, and g++ simply won't compile
code which ignores const.
For situations such as these, const usage may be inconsistent or fairly
sparse due to a lack of understanding. Perhaps the main reason is that
the code compiles without const
That's just my point, it generally doesn't, at least with a
conformant compiler.
I am not talking here about non-conformant code, but rather lazy
function parameter specifications. While a parameter might be able to
be specified as const as far as the function body is concerned, it will
still compile if it is not declared const. Only callers of the function
would be affected. If all their code is not using const (ie no member
functions are const - yuk!), then their calling code will also probably
compile okay. If nothing is const, then nothing will cause the compiler
to complain. This would prevent temporaries from being passed as
function parameters though, which would be a right pain in the neck for
most C++ programmers.
Have you tried the following:
struct S {} ; // Just to get an arbitrary type...
extern S f() ;
extern void g( S const& ) ;
void
h()
{
g( f() ) ;
}
If you forget the const in the declaration of g, this code will
not compile with a conformant compiler. It will not compile
with recent versions of g++, either. (It will also cause a
warning with either Sun CC or VC++, but only if the warning
level is set to max. And while we all know that that should be
the case, we all also know that it frequently isn't.)
That, more than anything else, forces people to use const.
--
James Kanze (Gabi Software) email: james.kanze@gmail.com
Conseils en informatique orient?e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S?mard, 78210 St.-Cyr-l'?cole, France, +33 (0)1 30 23 00 34
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]