Given:
template <int N>
struct val2size
{
char placeholder[N];
};
Is there any guarantee that sizeof(val2size<N>) == N?
|
Given:
Is there any guarantee that |
|||
|
The only guarantee is that
There may be unnamed padding at the end of the struct. I don't think it's likely that there will be unnamed padding, but it's possible. |
|||||||
|
|
No, James covers that. But you can get what you want with:
|
|||||||||
|
|
By default, there is no guarantee because of possible padding. However, many compilers (at least VC++ and gcc) allow you to set the alignment of structures using a pragma, like this:
Setting the alignment to 1 essentially prevents any additional padding at the end of the structure. |
|||||||
|
|
It depends on the size of N actually and whether that size of N char can be fit in a world align manner. If the memory of character array is world align ( 4 byte align for 32 bit and 8 byte align for 64 bit) then you will get sizeof==N or if not then it will add padding to make the memory allocated to be world align and in that case it will be >=N. |
|||
|
|
boost::array<char,N>or C++0xstd::array. – Potatoswatter Sep 5 '10 at 20:15