I want to reinterpret an unsigned long (actually, a DWORD) as a signed long. I tried:
DWORD x;
long y = reinterpret_cast<signed long>(x);
However, VC++2010 intellisense tells me "Invalid type conversion". Why? How do I fix it?
|
I want to reinterpret an
However, VC++2010 intellisense tells me "Invalid type conversion". Why? How do I fix it?
| |||
feedback
|
|
try static_cast instead. VC generates an error if you try an excessively permissive cast (like using reinterpret_cast when static_cast or const_cast will suffice). There are 5 types of casts in C++, each of which allows you to do more (grants more permissions). The least permissive casts are const casts ( I don't have a good way of describing these different types of casts, so I describe them as "more permissive" because each of them allows you to do more. VC warns you if you are using a reinterpret cast when one of the other cast types would be more appropriate to achieve your goal. C style casts don't have a similar warning for backwards compatibility. | |||||||
feedback
|
|
You don't need | |||||||||||||||
feedback
|