Re: Const Considerations
Al wrote:
I'm trying to get a feel for how common const is both in standard/official
code (stl/clib/etc.) and in production code "in the wild." In particular, I
am interested in the const-ness of function parameters. The feedback from
those with broad C++ exposure would be especially helpful. So here are my
questions:
a) Are most (say, 50%+) function input parameters, independent of domain,
const?
It depends on what you actually mean. Top level const is
ignored on function parameters in declarations which are not
definitions, and (I think) is generally avoided here. On the
other hand, I'd say that it is almost universal to use const
with references or pointers in function parameters. At least,
it has been considered good practice for over 15 years, and has
been more or less universally applied in code written within the
last 10 years.
A couple of caveats to this question:
* Please include params that should be const but are simply missing the
qualifier by mistake/ignorance.
* Please don't include strictly "output" params, i.e., anything that
could/should have been return'ed instead.
b) If (a) is true, and known at the time, why were parameters not defaulted
to const, and then optionally qualified with perhaps "mutable" to allow
modification?
At the time means what? Const didn't appear until, I think,
around 1985-1990. Programs written before that didn't use
const. Const was added to the language; as an addition, it
couldn't be the default, at least not without breaking most
existing code.
Has such a thing been considered, and does it have any merit?
There are a lot of wrong defaults. For historical reasons.
That's life. We could invent a new language, in which all of
the defaults were right, and which eliminated all of the other
problems in C++ as well. As we would have absolutely no
experience with the new syntax, however, it's almost certain
that we would create a lot of new, currently unimaginable
errors. The strongest thing C++ has going for it is that it is
the result of a gradual evolution based on concrete experience.
The biggest source of problems in C++ is that it is the ressult
of a gradual evolution based on concrete experience.
Having actually used languages invented from scratch, I can say
that at least in the set of languages I've used, the advantages
of being based on concrete experience far outweigh the
disadvantages. (Of course, the set of languages I've used is
considerably smaller than the set of languages I've not used, so
I'm not sure how much my experience is worth.)
c) Are there, in your experience, domains or niches where const is more
prevalent (say, math libraries, or string manipulation, etc.)
In my experience, there are no domains which even try to not use
it.
d) Are there any sites with a big list/table of standard C++ function
signatures aggregated in few pages so that I could do some crude statistical
analysis? Has anyone done this already?
In the standard, the case is simple: if the function doesn't
modify its argument, and the argument is passed by pointer or
reference, it is a pointer or reference to const. Both in C and
in C++. If this is not the case, it is considered an error in
the standard, and the committee would correct it.
The same thing is true for Posix, in their standard interfaces.
What little I've seen of Windows seems to follow the rule as
well.
This is also the case of the largest non-standard library I
know: boost. It has also been the case in all companies where
I've worked: a missing const is considered an error. (We
introduced this in the first coding guidelines I saw for C++,
around 1993, and it has been present in every guideline I've
seen since.) The C++ mapping for Corba imposes const on in
arguments. A quick glance at wxWidget suggests that this is
also the case there. Ditto iksemel (a library I'm using on a
current project).
--
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! ]