Let's say that I want to get the size in bytes or in chars for the name field from:
struct record
{
int id;
TCHAR name [50];
};
sizeof(record.name) does not work.
|
The solution for this is not so pretty as you may think:
If you want to use the second one on other platforms than Windows try:
|
|||||||||
|
|
If you create an instance first, it will work.
|
|||
|
In C++:
Edit: A couple of people have pointed out that this is C++0x code, so I guess I must retract my unkind comment regarding VC++. This is not a programming construct I have ever used in my own C++ code, but I have to wonder why sizeof would not work this way in C++03? You hand it a name and it gives you the size. I'd have thought it would take some effort for it not to work. But such is the wonder of the C++ Standard :-) |
|||||||||||||||||||
|
|
This creates a pseudo-pointer to an instance (or pointer to a pseudo-instance) of |
|||
|
|
|
You might wanna read this, as it discusses the very same issue and provides all the options mentioned in this thread, and a little more. |
|||||||
|
Portable, perfectly safe and IMO being explicit about raw array length is good practice. (edit: you might have to macro it in C, if the compiler gets upset about variable array lengths. if you do, consider defining a static const int to the value of the macro anyway!) |
|||
|
|
charandbyteare synonymous. – pmg Dec 10 '09 at 18:18