Re: static_cast vs. reinterpret_cast
Alan McKenney wrote:
Unfortunately, one does not always have a viable alternative.
One place where we end up having to use
reinterpret_cast<> a lot is for converting between
pointers to plain char and unsigned char. (The critical word
is "pointers".)
char* pc;
void* pv = pc; // = static_cast<void*>(pc);
unsigned char* puc = static_cast<unsigned char*>(pv);
Unfortunately, C++ considers "char" and "unsigned char"
to be unrelated types as far as pointers to them go, so you can't
do static_cast<const char *> on a "const unsigned char *"
So far, I know of no alternative that doesn't copy the data
(which we can't afford.)
Yes, it is annoying that this can't be done in a single step, in particular
because C++ guarantees that every object can be represented as a sequence
of unsigned char (or was it plain char?).
Fortunately, on the architectures I am familiar with,
I can't think how this wouldn't work unless the implementation
was deliberately trying to break it.
IIRC, reinterpret_cast eventually does the same as a C-style cast, except
that it leaves CV-qualifiers alone. Since C-style casts are rather
well-defined, so is reinterpret_cast and I also don't think it will break
anywhere. I think that one intention was that reinterpret_cast should be
allowed to change the representation, e.g. for imaginary architectures
where pointers are multiplied by the pointee's size for dereferencing
(rather like indices in C/C++). I'm not aware of any case where that is
used though.
Uli
--
Sator Laser GmbH
Gesch?ftsf?hrer: Ronald Boers, Amtsgericht Hamburg HR B62 932
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]