Re: Confirm reinterpret_cast if is safe?
On Mar 1, 3:51 pm, Leigh Johnston <le...@i42.co.uk> wrote:
On 01/03/2011 15:18, James Kanze wrote:
As soon as you need reinterpret_cast, portability goes out the
window. It's strictly for experts, and only for very machine
dependent code, at the very lowest level.
Quite often I have to use reinterpret_cast in GUI code (Microsoft) for
converting to/from GUI control item "LPARAM" values which I use for
associating a GUI control item with an object; I wouldn't call this
"very lowest level". Also, I am not sure that agree with you that a
particular language feature should only be used by "experts".
I'll admit that it can be necessary to work around a poorly
designed interface. The obvious answer is to fix the interface,
but we don't always have that liberty.
And the term "expert" is not meant to be precise, but just to
suggest that the decision to use it should not be made lightly.
I can easily imagine a case where the decision to use it
regularly in the interface to some external interface was made
by one of the project's "experts", but the actual use (following
the guidelines laid down by the expert) was by very run of the
mill programmers. I'd generally recommend having the experts
write a wrapper to the poorly designed interface, and letting
the others use that. But if the poorly designed interface is
a standard (Posix dlsym, for example, which can't be used
without a reinterpret_cast) or a pseudo-standard (Windows GUI?),
there's a strong argument for letting the programmers use the
interface they already know, rather than having to learn a new
one.
--
James Kanze