vote up 3 vote down star
1

In C/C++, how do I determine the size of the member variable to a structure without needing to define a dummy variable of that structure type? Here's an example of how to do it wrong, but shows the intent:

typedef struct myStruct {
  int x[10];
  int y;
} myStruct_t;

const size_t sizeof_MyStruct_x = sizeof(myStruct_t.x);  // error

For reference, this should be how to find the size of 'x' if you first define a dummy variable:

myStruct_t dummyStructVar;

const size_t sizeof_MyStruct_x = sizeof(dummyStructVar.x);

However, I'm hoping to avoid having to create a dummy variable just to get the size of 'x'. I think there's a clever way to recast 0 as a myStruct_t to help find the size of member variable 'x', but it's been long enough that I've forgotten the details, and can't seem to get a good Google search on this. Do you know?

Thanks!

flag

5 Answers

vote up 15 vote down check

In C++ (which is what the tags say):

sizeof myStruct_t().x;

No object will actually be created: the compiler only works out the static type of sizeof's operand, it doesn't actually execute the expression.

This works in C:

sizeof ((myStruct_t *)0)->x
link|flag
Cool! This worked for me in C++. Is there also a way to do it in C? – Matt Ball Sep 9 at 16:24
and what about C? I don't need this but i'd really like to know :-) – p4bl0 Sep 9 at 16:24
1  
+1 for not using a macro and adding confusion. – Lucas McCoy Sep 9 at 17:45
1  
The first approach will, obviously, only work for struct with an accessible default constructor (implicit or explitit). The second one is universal, and works in C and C++ alike. – Pavel Minaev Sep 9 at 18:28
1  
By the way, sizeof( myStruct_t::x ) will work in c++0x (source wikipedia) – Klaim Sep 9 at 19:18
show 1 more comment
vote up 10 vote down

I'm using following macro:

#include <iostream>
#define DIM_FIELD(struct_type, field) (sizeof( ((struct_type*)0)->field ))
int main()
{
    struct ABC
    {
        int a;
        char b;
        double c;
    };
    std::cout << "ABC::a=" << DIM_FIELD(ABC, a) 
              << " ABC::c=" << DIM_FIELD(ABC, c) << std::endl;

    return 0;
}

Trick is treating 0 as pointer to your struct. This is resolved at compile time so it safe.

link|flag
Good! That was the macro I was looking for! – Matt Ball Sep 9 at 16:29
vote up 3 vote down

You can easily do

sizeof(myStruct().x)

As sizeof parameter is never executed, you'll not really create that object.

link|flag
vote up 3 vote down

Any of these should work:

sizeof(myStruct_t().x;);

or

myStruct_t *tempPtr = NULL;
sizeof(tempPtr->x)

or

sizeof(((myStruct_t *)NULL)->x);

Because sizeof is evaluated at compile-time, not run-time, you won't have a problem dereferencing a NULL pointer.

link|flag
vote up 0 vote down

From my utility macros header:

#define FIELD_SIZE(type, field) (sizeof(((type *)0)->field))

invoked like so:

FIELD_SIZE(myStruct_t, x);
link|flag

Your Answer

Get an OpenID
or

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