The reinterpret-cast tag has no wiki summary.
0
votes
1answer
71 views
.read() reinterpret_cast<char *> c++
I've got a file with some doubles (9 to be exact, for a 3x3 matrix) written in binary. I'm trying to make use of them as the real double value they represent (the number ej: 5.66 / -1.882 / etc..).
...
4
votes
3answers
123 views
C++ unions vs. reinterpret_cast
It appears from other StackOverflow questions and reading §9.5.1 of the ISO/IEC draft C++ standard standard that the use of unions to do a literal reinterpret_cast of data is undefined behavior.
...
2
votes
1answer
84 views
Is it unsafe to mix static and reinterpret cast when casting to and back from void*?
Simply: If i static_cast a type X* to void*, is it always safe to reinterpret_cast it back to X*?
I am unable to produce any case where this fails for example:
#include <iostream>
struct a
{
...
-5
votes
1answer
75 views
Returning int, int* and int& from a function
I just wanted to clarify something, imagine we have the function signature:
1) int* X(){}
2) int Y(){}
3) int& Z(){}
I am trying to work out the exhaustive possibilities of types of values I ...
1
vote
5answers
82 views
reinterpret_cast and cross casting
#include<iostream>
struct I1
{
virtual void nb1()=0;
virtual ~I1(){}
};
struct I2
{
virtual void nb2()=0;
virtual void nb22()=0;
virtual ~I2(){}
};
struct C12 : I1, I2
{
...
0
votes
2answers
93 views
Using reinterpret_cast to add const to a template class
Would this be a correct use of reinterpret_cast or is there some better approach to solve the problem.
Node<T>* front_;
Iterator<const T> GetConstIterator() const {
return ...
5
votes
3answers
213 views
C++. reinterpret_cast from double to unsigned char*
I was having a small play around with C++ today and came across this which I thought was odd, but perhaps more likely due to a misunderstanding by me and lack of pure C coding recently.
What I was ...
12
votes
3answers
279 views
Proper way of casting pointer types
Considering the following code (and the fact that VirtualAlloc() returns a void*):
BYTE* pbNext = reinterpret_cast<BYTE*>(
VirtualAlloc(NULL, cbAlloc, MEM_COMMIT, PAGE_READWRITE));
why is ...
0
votes
0answers
28 views
why is qDebug() needed after the reinterpret_cast?
In a template function, T is a typename. here the T is float. I have a ulonglong like ox41480000. According to IEEE R32.24, ox41480000 is 12.5 as a float. so I use this to convert the qlonglong to ...
-1
votes
2answers
160 views
reinterpret_cast/type punning functionality in C with unions [closed]
I am trying to write 512 bytes as unsigned char, but read them as fields in a struct. Below is the union I have come up with.
typedef union {
unsigned char buffer[512]; //512 bytes
struct {
...
1
vote
1answer
146 views
Can I convert a pointer to member function to a char array and back using reinterpret_cast?
I have some code that looks like this:
char member_data[16];
template<typename T>
void set(void (T::*member)(void)) {
memcpy(member_data, (char*) &member, sizeof(member));
}
...
1
vote
2answers
114 views
reinterpret_cast - bizarre behaviour
I've come across bizarre error related to reinterpret_cast. Just look at below code:
int* var;
reinterpret_cast<void const **>(&var);
error in VSC++2010: error C2440: 'reinterpret_cast' : ...
2
votes
6answers
150 views
Why can't I reinterpret_cast uint to int?
Here's what I want to do:
const int64_t randomIntNumber = reinterpret_cast<int64_t> (randomUintNumber);
Where randomUintNumber is of type uint64_t.
The error is (MSVC 2010):
error C2440: ...
2
votes
1answer
187 views
Pthread and void* attempt to de-reference a generic pointer
When I debug my PRJ I get this error:
args Error: Multiple errors reported.\ Failed to execute MI command: -var-create -
args Error message from debugger back end: Attempt to dereference a ...
2
votes
3answers
62 views
reinterpret_cast to QObject's subling
I've got some kind of object factory (template based), that works pretty good for my purposes. But now I've tried to work with class, that derives from both QObject and pure abstract class (interface) ...
4
votes
5answers
241 views
const_cast vs reinterpret_cast
Referring the SO C++ FAQ When should static_cast, dynamic_cast and reinterpret_cast be used?.
const_cast is used to remove or add const to a variable and its the only reliable, defined and legal way ...
12
votes
3answers
192 views
Is casting std::pair<T1, T2> const& to std::pair<T1 const, T2> const& safe?
Is it safe (in theory or in practice) to reinterpret_cast a std::pair<T1, T2> const & into a std::pair<T1 const, T2> const &, assuming that the programmer hasn't intentionally done ...
-4
votes
2answers
135 views
When to use union vs. ‪reinterpret_cast‬ in c++ [closed]
I'm a little bit confused over when to use unions and reinterpet-casts. Could someone explain the pros/cons of both? Things like which is safer, cheaper, faster, better for RT, etc.
9
votes
2answers
220 views
Is reinterpret_cast bad when dealing with low-level byte manipulation?
I'm writing a websocket server and I have to deal with masked data that I need to unmask.
The mask is unsigned char[4], and the data is a unsigned char* buffer as well.
I don't want to XOR byte by ...
-2
votes
2answers
362 views
BYTE to char conversion in c [closed]
I am working on a project in which two systems are connected. one of them sending the data as packet which is a BYTE array.Other system is receiving that data , here the problem comes
On the ...
1
vote
1answer
235 views
Qt - invoking slots that take custom pointers as arguments
I'm trying to hack with Qt's signals and slots, and I ran into an issue where QMetaType::invokeMethod won't properly pass pointer arguments to the slot being called.
call(QObject *receiver, const ...
0
votes
1answer
202 views
error C2440: 'reinterpret_cast': cannot convert from 'overloaded-function' to 'StateFunc'
The code is taken from an DDJ article state machine design in c
class EventData
{
public:
virtual ~EventData() {};
};
struct StateStruct;
class CStateMachine : public CObject
{
...
0
votes
1answer
128 views
c++, reinterpret_cast structure* to unsigned char*
At first I'm sorry for my English:)
So, I have a structure and variable
typedef struct
{
GHEADER m_Header;
BYTE *m_Buf;
Addr *m_Abonent;
}__attribute__((packed)) PACKET;
unsigned char* ...
0
votes
3answers
106 views
Is reinterpret_cast and c-style cast compatible (by C++ standard)?
The C++ standards mentions that reinterpret_cast is implementation defined, and doesn't give any guarantees except that casting back (using reinterpret_cast) to original type will result in original ...
-2
votes
2answers
109 views
std::copy_n and reinterpret_cast
uint data1;
ushort data2;
ushort data3;
uchar data4[8];
std::uint8_t buff[16];
std::uint8_t* out = buff;
out = std::copy_n(reinterpret_cast<std::uint8_t*>(&quid.data1), 4, out);
out ...
2
votes
3answers
108 views
How can we reinterpret a double or float as NSUInteger to create hash?
This is my isEqual and hash custom operator
- (BOOL)isEqual:(id)object;
{
BGSearchParameter * theOther = (BGSearchParameter *)object;
BOOL isTheOtherEqual;
isTheOtherEqual = ...
0
votes
2answers
135 views
How to check whether iterators form a contiguous memory zone?
I currently have the following function to read an array or a vector of raw data (_readStream is a std::ifstream) :
template<typename IteratorType>
inline bool MyClass::readRawData(
const ...
0
votes
1answer
218 views
Binary read, reinterpret_cast and endianness
I'm currently dealing with endianness-related problems.
Let's assume that I have a big-endian file in a big-endian system.
The first value in this file is 2882400152 = 0xABCDEF98 which is an integer ...
5
votes
2answers
222 views
Addresses, reinterpret_cast and multiple inheritance
Can anybody explain the behaviour of the following code?
Why do we have b = 3 in the first case, i.e. b2 == &d is true?
Why is it ok in Case 2? I have printed the addresses of b2 and d, and ...
4
votes
1answer
109 views
Is reinterpret cast from vector of pointers to vector of const pointers safe?
Is this conversion type safe
vector<int*> a;
const vector<const int*>& b = reinterpret_cast<const vector<const int*>&>(a);
A static cast obviously doesnt work in ...
0
votes
1answer
77 views
reinterpret_cast of an object
Taking this struct:
struct Foo
{
float m_foo;
// no other member
};
// A Foo object.
Foo f;
Which is more costly?
float result = std::sin(f.m_foo);
or
float result = ...
0
votes
1answer
109 views
reinterpret_cast and null member variables
I'm using reinterpret_cast something like this:
void RunThread (void *myself)
{
(reinterpret_cast<MyClass*>(myself))->Method();
}
Inside Method, most of my member variables (all ...
12
votes
5answers
700 views
Why does C style cast work but reinterpret_cast doesn't?
So I have a two char array
unsigned char v[2];
I want to show the value of v[0] as a number from 0 to 255 but
cout << v[0] << endl; //prints some garbage
cout << (void*)v[0] ...
-2
votes
2answers
113 views
reinterpret_cast, casting to brother class
I am just wondering if the following C++ code guaranteed to work:
struct B1 {
virtual void f() {};
};
struct B2 {
virtual void f2() {};
};
struct D:public B1,public B2 {
};
int main() {
...
15
votes
4answers
414 views
Is %p specifier only for valid pointers?
Suppose on my platform sizeof(int)==sizeof(void*) and I have this code:
printf( "%p", rand() );
Will this be undefined behavior because of passing a value that is not a valid pointer in place of ...
0
votes
2answers
219 views
Reinterpret_cast vs placement new
From reading this post, it is clear that placement news in c++ are used to call a class constructor on a pre-allocated memory location.
In the case that the memory is already initialized, is a ...
12
votes
4answers
257 views
Why do I need a reinterpret_cast to convert Fred ** const to void ** const?
I have a const pointer to a pointer to a Fred and I don't understand why a static_cast isn't sufficient.
typedef struct {
int n;
} Fred;
Fred *pFred;
Fred **const ppFred = &pFred;
void ...
4
votes
6answers
475 views
What value does const void * offer over void *?
In C++, is there any value in using a const void * for an argument type to a function over a void *? Since a void * is opaque, is there any risk of modification other than if the user does ...
2
votes
4answers
402 views
Make interchangeable class types via pointer casting only, without having to allocate any new objects?
UPDATE: I do appreciate "don't want that, want this instead" suggestions. They are useful, especially when provided in context of the motivating scenario. Still...regardless of goodness/badness, ...
3
votes
2answers
144 views
Does encapsulated char array used as object breaks strict aliasing rule
Do the following class break the strict aliasing rule:
template<typename T>
class store {
char m_data[sizeof(T)];
bool m_init;
public:
store() : m_init(false) {}
store(const T ...
1
vote
1answer
100 views
Passing custom data through predefined COM interface
I'm using 3-rd party COM service. It's exposed from .NET assembly. There are several interfaces this service provides that actually I can use in my C++ application (using early binding). Actually I ...
5
votes
1answer
240 views
Strict aliasing and std::array vs C-style array
When compiling the following code with gcc 4.7 (g++-mp-4.7 (GCC) 4.7.0 built with MacPorts on OS X) I get seemingly contradictory results.
The compiler does not complain when I try to reinterpret and ...
3
votes
2answers
333 views
Using reinterpret_cast with ARC enabled
I have included a header file for a library in my ARC-enabled Objective-C project.
I know the library is not compiled with ARC enabled, but the problem is the header file of the library, specifically ...
0
votes
2answers
83 views
reinterpret_cast and STATUS_ACCESS_VIOLATION
While experimenting with C++ and the reinterpret_cast function I tried to convert a short to a string and got a STATUS_ACCESS_VIOLATION Exception.
short s = 32767;
short* s2 = &s;
...
7
votes
3answers
1k views
Why can't I static_cast between char * and unsigned char *?
Apparently the compiler considers them to be unrelated types and hence reinterpret_cast is required. Why is this the rule?
1
vote
4answers
87 views
reinterpret_cast and virtual between unrelated types
Would someone kindly explain why the following bit of code works, I've tested it on Visual Studio .NET 2008, g++ on Cygwin and ideone.com. More important I'd like to know if its valid. Note that A and ...
9
votes
1answer
260 views
Does accessing the first field of a struct via a C cast violate strict aliasing?
Does this code violate strict aliasing?
struct {int x;} a;
*(int*)&a = 3
More abstractly, is it legal to cast between different types as long as the primitive read/write operations are type ...
0
votes
2answers
28 views
change constant
Please explain to me why I can not change constant by using next?
const int i = 10;
int * p = reinterpret_cast<int *>(&i);
0
votes
2answers
108 views
Reinterpreted pointer does not point to correct memory location
Suppose I got this in Message.h:
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
#include <stdio.h>
#include <string.h>
enum PRIMITIVE{
MESSAGE_1 = 100,
MESSAGE_2,
};
enum { ...
8
votes
1answer
571 views
Why is it important to use static_cast instead of reinterpret_cast here?
At a reply of a blog post of Raymond Chen,
A questioner pointed out
Raymond, I believe the C++ example is not correct since the position
of the base class subobject in the derived class is ...
