Tagged Questions
The offsetof tag has no wiki summary.
10
votes
10answers
4k views
Why can't you use offsetof on non-POD strucutures in C++?
I was researching how to get the memory offset of a member to a class in C++ and came across this on wikipedia:
In C++ code, you can not use offsetof to access members of structures or classes ...
8
votes
6answers
1k views
Looking for something similar to offsetof() for non-POD types
I'm looking for a way to obtain offsets of data members of a C++ class which is of non-POD nature.
Here's why:
I'd like to store data in HDF5 format, which seems most suited for my kind of material ...
5
votes
2answers
348 views
Why subtract null pointer in offsetof()?
Linux's stddef.h defines offsetof() as:
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
whereas the Wikipedia article on offsetof() (http://en.wikipedia.org/wiki/Offsetof) ...
2
votes
5answers
181 views
Does the 'offsetof' macro from <stddef.h> invoke undefined behaviour?
Example from MSVC's implementation:
#define offsetof(s,m) \
(size_t)&reinterpret_cast<const volatile char&>((((s *)0)->m))
// ...
1
vote
1answer
70 views
is a pointer to data member its offset?
Am I safe to assume that the offset of a data member (offsetof(mystruct, myfield)) is numerically equal to the raw value of a member pointer retrieved with &mystruct::myfield, or is it ...
1
vote
2answers
232 views
g++ won't let me pass a template parameter to offsetof
When using g++ I pass a template parameter as the member variable to offsetof, and I get the following warning:
invalid access to non-static data member 'SomeClass::t' of NULL object
(perhaps the ...
0
votes
1answer
24 views
Getting every offsetParent or the total offSetTop and total offSetLeft
I want to get the total offSetTop and the total offSetLeft of a child element which have many level of parent element and may be adding up.
Is that any shorthand way, besides of adding one by one in ...
0
votes
1answer
94 views
Pointer-to-member, type descriptors and references
I'm working on a type descriptor project in C++11. The type descriptor's job is to know the types of every member in a class, it's size and it's offset from the base of an object. I don't support ...
0
votes
2answers
316 views
member alignment in c struct-embedded union
I am modifying a bit of C code, that goes roughly like this:
typedef struct STRUCT_FOO {
ULONG FooInfo;
union {
ULONG LongData;
USHORT ShortData;
UCHAR ...