Re: standard namespace
On Apr 21, 3:53 pm, Jeff Schwab <j...@schwabcenter.com> wrote:
James Kanze wrote:
On Apr 20, 4:59 pm, Jeff Schwab <j...@schwabcenter.com> wrote:
Alf P. Steinbach wrote:
Very few compilers, if any, are standard-conforming
regarding the requirement that a <c...> header does not
introduce names in the global namespace.
The standardization way of dealing with that is to allow
the existing dirty practice, which is what C++0x will do.
The rational in-practice way to deal with it is therefore
to not use those headers, use <...h> headers
The rational, in-practice way to deal with it is to use the
<c*> headers, but be aware that the global namespace may be
polluted.
It's more complicated than that. If you use the <c*>
headers, you may accidentally omit the std::; your code will
compile anyway, but it won't necessarily compile with other
compilers.
If one uses the .h headers, the code will be non-portable to
any platform that does not provide them.
And which platforms are those? They're required by the
standard. They're also required by C, and I can't imagine a
platform supporting C++, but not C.
Those headers are deprecated,
Deprecated doesn't mean anything.
and subtly different from the c* headers.
The only subtle difference I know is that I know exactly what is
in them, which isn't the case for the <c*> headers.
Futhermore, I don't want something as simple as "using
std::printf" to be an error.
Actually, I'd like for any use of printf to be an error:-). (At
compile time---it frequently does end up being an error at run
time.)
But why would you use std::whatever for a function which is
defined in the C standard (or the Posix standard)? And of
course, even if I use <cassert>, std::assert is an error (and
that is by far the function I use most from the C libraries).
And of course, if you're using Posix as well, the contents
of the <*.h> headers is well defined---and not conform with
the C or C++ standard; the contents of the <c*> headers
isn't. So if you're using any of the Posix features which
Posix (wrongly, IMHO) put into a standard C header, you more
or less have to use the <*.h> forms.
You're talking about two different libraries, POSIX and C++
standard, with similar but different headers.
Sort of. Some of the Posix headers have the same names as the C
headers---if I wanted popen, for example, I'd include <stdio.h>.
If you need POSIX headers, include them. If you need C++
headers, include those, too.
And if I need the C headers, I include those. Sounds logical to
me: if the function I use is defined in the C standard, I
include the header defined in the C standard. Even if the C++
standard includes it by reference.
But it's a bad idea to just omit the formally preferred C++
headers, since what the heck, you've pretty much got what you
want already from POSIX.
It is my sincere wish that the deprecated,
must-be-C-compatible, namespace-polluting headers eventually
die off, but that will never happen as long as developers
continue to use them instead of more modern substitutes.
They won't die off as long as there is C. And theirs no point
in not using them as long as parts of the contents are macros,
and other standards organizations, like Posix, extends them for
its own purposes.
My sincere wish is that we get well designed, C++ components for
all of the functionality in them, so I don't have to drop back
into C for e.g. things like time---whether the function's name
is strftime or std::strftime, it's pure C in its interface, not
C++.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34