Tagged Questions
The reinterpret-cast tag has no wiki summary.
22
votes
3answers
1k views
casting via void* instead of using reinterpret_cast
I'm reading a book and I found that reinterpret_cast should not be used directly, but rather casting to void* in combination with static_cast:
T1 * p1=...
void *pv=p1;
T2 * p2= ...
17
votes
5answers
4k views
Should I use static_cast or reinterpret_cast when casting a void* to whatever
Both static_cast and reinterpret_cast seem to work fine for casting void* to another pointer type. Is there a good reason to favor one over the other?
12
votes
6answers
698 views
Why do we have reinterpret_cast in C++ when two chained static_cast can do it's job?
Say I want to cast A* to char* and vice-versa, we have two choices (I mean, many of us think we've two choices, because both seems to work! Hence the confusion!):
struct A
{
int age;
char ...
10
votes
6answers
669 views
reinterpret_cast cast cost
My understanding is that C++ reinterpret_cast and C pointer cast is a just
a compile-time functionality and that it has no performance cost at all.
Is this true?
8
votes
3answers
354 views
What wording in the C++ standard allows static_cast<non-void-type*>(malloc(N)); to work?
As far as I understand the wording in 5.2.9 Static cast, the only time the result of a void*-to-object-pointer conversion is allowed is when the void* was a result of the inverse conversion in the ...
7
votes
2answers
276 views
May I have a real life example where casting through void* works and reinterpret_cast doesn't?
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 ...
7
votes
6answers
203 views
C++ When should we prefer to use a two chained static_cast over reinterpret_cast
First of all, this is not a duplicate of Why do we have reinterpret_cast in C++ when two chained static_cast can do it's job?.
I know situations where we cannot use even two chained static_cast to ...
7
votes
9answers
2k views
Why doesn't this reinterpret_cast compile?
I understand that reinterpret_cast is dangerous, I'm just doing this to test it. I have the following code:
int x = 0;
double y = reinterpret_cast<double>(x);
When I try to compile the ...
6
votes
5answers
456 views
Is reinterpret_cast mostly useless?
I've read various previous questions about the use of reinterpret_cast, and I've also read the relevant wording in the C++ standard. Essentially, what it comes down to is that the result of a ...
5
votes
3answers
101 views
char* conversion and aliasing rules
According to strict aliasing rules:
struct B { virtual ~B() {} };
struct D : public B { };
D d;
char *c = reinterpret_cast<char*>(&d);
A char* to any object of different type is valid. ...
5
votes
5answers
288 views
Need clarifications in C-style, reinterpret, and const casts
Am I right in assuming that C-style casts (which are discouraged) are nothing but reinterpret_casts? Using the latter is visually striking and easy to search when looking for nasty casts, and hence ...
4
votes
5answers
122 views
c++ - interpret unsigned as signed
I'm working on an embedded platform (ARM) and have to be careful when dealing with bit patterns. Let's pretend this line is beyond my influence:
uint8_t foo = 0xCE; // 0b11001110
...
4
votes
2answers
727 views
Problem casting STL complex<double> to fftw_complex
The FFTW manual says that its fftw_complex type is bit compatible to std::complex<double> class in STL. But that doesn't work for me:
#include <complex>
#include <fftw3.h>
int ...
4
votes
6answers
376 views
C++ cast to array of a smaller size
Here's an interesting question about the various quirks of the C++ language. I have a pair of functions, which are supposed to fill an array of points with the corners of a rectangle. There are two ...
3
votes
4answers
166 views
Can I convert a null pointer of int to a long type by reinterpret_cast
int *pt = 0;
long i = reinterpret_cast<long>(pt);
Is i guaranteed to be 0? Is this well defined or implementation-defined?
I checked the c++ standard, but it only states that
A pointer to a ...
3
votes
4answers
193 views
Is std::complex stored in an interleaved fashion?
That is, on disk, if I have an array of std::complex, is it stored RIRIRIRI or RRRRIIII or something else?
My real question is - if I have a structure that I have defined that contains two numbers, ...
3
votes
2answers
168 views
reinterpret_cast for almost pod data (is layout-compatibility enough)
I am trying to learn about static_cast and reinterpret_cast.
If I am correct the standard (9.2.18) says that reinterpret_cast for pod data is safe:
A pointer to a POD-struct object,
suitably ...
3
votes
3answers
609 views
reinterpret_cast
In the C++ Without Fear: A Beginner's Guide That Makes You Feel Smart book, and in chapter (8), it mentions the following about reinterpret_cast
....converts from one pointer type (int) to another ...
2
votes
3answers
86 views
c++ reinterpret_cast, virtual, and templates ok?
In C++, assume following class hierarchy:
class BaseClass { };
class ChildClass : public BaseClass { };
Further assume factory classes for these two classes with a common, templated base class:
...
2
votes
5answers
117 views
How can I get rid of this reinterpret_cast, or is this usage OK?
I have a template member function with this signature:
template<typename T> void sync(void (*work)(T*), T context);
It can be called with a pointer to a function that accepts an argument of ...
2
votes
3answers
68 views
Result of converting a pointer to function to different pointer to function type
(5.2.10/6) C++03 A pointer to a function can be explicitly converted to a pointer to a function of a different type. The effect of calling a function
through a pointer to a function type (8.3.5) ...
2
votes
3answers
70 views
using reinterpret_cast for member function arguments
here's some code:
class containerA
{};
class containerB
: public containerA
{
public:
containerB () {};
containerB(const containerB& cb)
{
cout << ...
2
votes
2answers
147 views
How do I reinterpret an unsigned long (DWORD) as a signed long in C++?
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 ...
2
votes
4answers
232 views
casting member function pointer
I need to use a member function pointer that takes in an argument of base class that used in other code. Well, simply I want do to [something] like the example below. This code works fine, but I ...
2
votes
5answers
245 views
Class Private members modified on creating a structure (C++)
I was just going through some codes of C++.
Where in I came across the concept of reinterpret_cast operator.
EDIT 1 :
I know that accessing private members of a class is not recommended.
But in ...
2
votes
4answers
195 views
question about reinterpret_cast
i have following code
#include <iostream>
using namespace std;
int main(){
int i;
char *p="this is a string";
i=reinterpret_cast<int>(p);
cout<<i<<"\n":
...
2
votes
2answers
841 views
Way to get unsigned char into a std::string without reinterpret_cast?
I have an unsigned char array that I need in a std::string, but my current way uses reinterpret_cast which I would like to avoid. Is there a cleaner way to do this?
unsigned char my_txt[] = {
...
1
vote
2answers
94 views
Choosing random number for object ID?
I'm implementing a reference counting base class and would like to set uniqe number for each object being created which inherits that interface.
here is a code snippet from that class:
HEADER:
...
1
vote
2answers
75 views
Multiple inheritance and the this pointer
Suppose I have this struct:
struct vector_data
{
double x, y;
double& operator[](size_t index)
{
return * (static_cast<double*>(static_cast<void*>(this)) + ...
1
vote
1answer
67 views
Pack Class Object Pointer into char * for message queue
Is it possible to properly and safely pass a class object pointer through a POSIX message queue?
For instance,
Object *obj = new Object();
mq_send(mqdes, static_cast<char*>&obj, ...
1
vote
3answers
60 views
C++ reinterpret_cast, making unique number
Recently, i'm using a code to make unique int number for my classes.
I used reinterpret_cast<int>(my_unique_name) where my_unique_name is a char [] variable with unique value. Something like ...
1
vote
3answers
121 views
how to use reinterpret_cast to cast to a derived class pointer in c++
Here is my test example:
struct base {
virtual ~base(){}
int x;
};
struct derived: public virtual base {
base * clone() {
return new derived;
}
derived(): s("a") {}
...
1
vote
4answers
143 views
C++ reinterpret_cast
In running this program:
#include <iostream>
int main()
{
char *name = "abc";
int i = reinterpret_cast<int>(name);
std::cout<<i<<std::endl;
return 0;
}
I got the following ...
1
vote
1answer
331 views
Proper casting for fstream read and write member functions
Although there was a lot of lines written on the topic of reinterpret_cast, and how bad it is, I'm still puzzled with best way to avoid it, especially when dealing with functions like read and write ...
1
vote
3answers
339 views
How does this reinterpret_cast work? (Porting C++ to Java)
I have some C++ code I'm trying to port to Java, that looks like this:
struct foostruct {
unsigned char aa : 3;
bool ab : 1;
unsigned char ba : 3;
bool bb : 1;
};
static void ...
1
vote
2answers
277 views
C++ reinterpret_cast
I don't know why this simple code is not working. Can someone please explain me?
int main()
{
const char* c = "ret";
typedef unsigned char GOK_UINT8;
typedef GOK_UINT8* pGOK_UINT8;
...
1
vote
6answers
550 views
Problem using reinterpret_cast<> in c++
I am trying to cast a datastream into a struct since the datastream consists of fixed-width messages and each message has fulle defined fixed width fields as well. I was planning on creating a struct ...
1
vote
8answers
552 views
C++: Safe way to cast an integer to a pointer
I need to convert an integral type which contains an address to the actual pointer type. I could use reinterpret_cast as follows:
MyClass *mc1 = reinterpret_cast<MyClass*>(the_integer);
...
1
vote
4answers
179 views
Is reinterpreting a member function pointer a 'good idea'?
I have a worker thread, which holds a list of 'Thread Actions', and works through them as an when.
template <class T> class ThreadAction
{
public:
typedef void (T::*action)();
...
0
votes
2answers
101 views
GCC implementation for behavior of reinterpret cast
How can I know how will reinterpret cast work on GCC compiler? Is it mentioned in the documentation? May I know any reference or link if it exist?
0
votes
4answers
52 views
Pointer to integer using reinterpret
I'm trying to cast a pointer to another type using reinterpret_cast
class MyClassA
{
int x;
int y;
public:
MyClassA();
~MyClassA();
};
class MyClassB
{
int x;
int y;
public:
...
0
votes
1answer
85 views
Standard layout type and reinterpret_cast
Am I allowed to cast from my class to a structure if i have copied the members of the structure to my class?
#include <stdint.h>
#include <sys/uio.h>
class Buffer
{
public:
void * ...
0
votes
2answers
80 views
Calling member function of zero data struct which was cast from incompatible type - Undefined?
There is a forward C struct declared in an unmodifiable header. I would like to "virtually" add convenience member functions to it. Obviously my first choice would be to extend the struct and add the ...
0
votes
1answer
114 views
How to implement safe copy constructor for class that has internal placement new (with std::string)
Here's my code:
struct RS_Token
{
char id;
char cleanup;
unsigned char array[sizeof (std::string) > sizeof (double) ? sizeof (std::string) : sizeof (double)];
RS_Token(int a) :
...
0
votes
2answers
93 views
compiling wxWidgets with c++0x flags
While trying to compile wxWidgets-2.9.1 from source with c++0x flags using gcc-4.6. I came across an error
narrowing conversion of '128' from 'int' to 'char' inside { } [-fpermissive]
in the file ...
0
votes
3answers
157 views
Reinterpret_cast use in C++
Just a simple question,having this:
fftw_complex *H_cast;
H_cast = (fftw_complex*) fftw_malloc(sizeof(fftw_complex)*M*N);
what is the difference between:
H_cast= ...
0
votes
4answers
198 views
Safe way to reinterpret_cast raw struct at particular offset and type?
return *reinterpret_cast<UInt32*>((reinterpret_cast<char*>(this) + 2));
Struct is pragma packed 1 and contains a bunch of uint, char, short fields...
Since it's UInt32, should it first ...
0
votes
5answers
257 views
C++ reinterpret_cast for derived class
Parent class:
template <class T>
class Point
{
protected
T x;
T y;
};
Derived class:
template <class T>
class Point3DTopo: public Point <T>
{
protected:
...
0
votes
4answers
199 views
Is there a good way to convert from unsigned char* to char*?
I've been reading a lot those days about reinterpret_cast<> and how on should use it (and avoid it on most cases).
While I understand that using reinterpret_cast<> to cast from, say ...
0
votes
3answers
255 views
C++ reinterpret cast?
I would like to cast one object of the class PointsList to another object Points3DList (and vice versa) where:
template <class T>
class PointsList
{
protected:
std::vector ...