There's a set of questions regarding cross-casts (cast from T1* to unrelated T2*), for example this and this. The answer usually goes like this: reinterpret_cast is implementation defined and conversion to void* followed by static_cast is well-defined. Yet I haven't see any real examples of what can go wrong when reinterpret_cast is used.

What are real-life examples where casting through void* works and reinterpret_cast doesn't?

link|improve this question

76% accept rate
3  
I was under the impression that reinterpret_cast to char* actually was well-defined (but unspecified, yes). And that, furthermore, cast to void*, followed to cast to an undefined type, is undefined. void* should only be used to erase and restore the same type. (See also Johannes’ comment to Pavel’s answer which states about the same, just more rigorously.) – Konrad Rudolph Jul 6 '11 at 10:30
@sharptooth: "What are real-life examples where casting through void* works and reinterpret_cast doesn't?" I don't think that there are such examples. But why would you want to create implementation-specific solution (even if every implementation of your interest supported) if you can create solution with standard-specified behavior (and thus guaranteed to be portable for every conforming implementation ever existed)? – Serge Dundich Jul 6 '11 at 12:17
"The answer usually goes like this: reinterpret_cast is implementation defined and conversion to void* followed by static_cast is well-defined." then the usual answer is wrong. – curiousguy Dec 13 '11 at 14:04
@curiousguy: The Right Answer is welcome. – sharptooth Dec 13 '11 at 14:13
@sharptooth Here it is. – curiousguy Dec 13 '11 at 14:17
show 5 more comments
feedback

2 Answers

real-life examples where casting through void* works and reinterpret_cast doesn't

If I interpret this sentence as, casting through void* works to help me avoid undefined behavior and reinterpret_cast doesn't then following is an example.

reinterpret_cast<TYPE*&> (pointer reference) may break strict aliasing rule (it happens for g++ at least) and leads you to an undefined behavior. Demo.

However, static_cast<void*&> will result in compiler error and save you from such undefined behavior. Demo.

I have seen such use in a smart pointer:

template<class TYPE>
struct SmartPointer
{
  void *p;
  TYPE& operator ++ ()
  {
    (reinterpret_cast<TYPE*&>(p))++;  // breaking strict aliasing rule
    return *this;
  }
}
link|improve this answer
1  
Could you please copy the code snippets into the answer? – sharptooth Jul 6 '11 at 10:42
@sharptooth, I have put a real life code in the answer. See if it helps. – iammilind Jul 6 '11 at 10:46
"reinterpret_cast<TYPE*&>" Who suggested that? – curiousguy Dec 13 '11 at 14:06
@curiousguy, how does it matter ? This code snippet is showing the reinterpret_cast<> in bad light (which breaks strict aliasing rules). – iammilind Dec 13 '11 at 14:16
@iammilind I don't understand what you are getting at. This code fragment show a use of reinterpret_cast that is not well defined, and that is not what the OP wanted to do. – curiousguy Dec 13 '11 at 15:02
show 3 more comments
feedback

casting from T1* to unrelated T2* with reinterpret_cast is not less defined than with static_cast. Actually, when both T1 and T2 are standard layout types it works the same (see 5.2.10/7):

When a prvalue v of type “pointer to T1” is converted to the type “pointer to cv T2”, the result is static_cast<cv T2*>(static_cast<cv void*>(v))

For non-standard layout types the result of conversion is unspecified, but it's unspecified for static_cast as well.

I guess, you can get a difference only when casting non-pointer types in artificial cases like this:


struct Foo
{
};

struct Bar
{
    operator void*()
    {
        return 0;
    }
};

int main ()
{
  Bar b;
  Foo * p1 = static_cast<Foo*>(static_cast<void *>(b)); // ok, Bar::operator void* -> static_cast
  Foo * p2 = reinterpret_cast<Foo*>(b); // error, no conversion from Bar to Foo*.
}

link|improve this answer
1  
It's possible that sharptooth is talking about the current standard, C++03, not the draft you quote from. Although actually I think he's probably talking about whether it goes wrong in practice, so both standards are kind of irrelevant in the face of what implementations actually do - C++03 is irrelevant because all known implementations have more in common between their reinterpret_cast implementations than is actually guaranteed, and the FDIS because nobody promises to implement it yet anyway. – Steve Jessop Jul 6 '11 at 11:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.