First of all, on my system the following hold: sizeof(char) == 1 and sizeof(char*) == 4. So simply, when we calculate the total size of the class below:

class SampleClass { char c; char* c_ptr; };

we could say that sizeof(SampleClass) = 5. HOWEVER, when we compile the code, we easily see that sizeof(SampleClass) = 8.

So the question is "where is the problem with calculation?" :S

Language: C++ Compiler: gcc 4.4.0 OS: Tinycore

link|improve this question
4  
"everybody knows that a char takes 1 byte and a pointer takes 4 bytes" People don't know that because it is not true except on a select set of architectures. A very common set in recent years, but there is nothing fundamental about either of that alleged "facts". Note that sizeof(char) is 1, but that does not mean that a character is 8 bits. – dmckee Oct 9 '10 at 18:36
absolutely you're right, but since I defined at the last line of my question, it was just limited to the environment I have (32-bit arch, 32-bit OS). anyway, thanks for your warning. – sizeofProb Oct 9 '10 at 18:40
Even saying that you're on a 32 bit machine doesn't makes either of those statements true. The machines you are used to are 32 bit words, but have 8-bit byte addressing capability. There could be machines with 32 bit words that can only address 32-bit chunks, in which case a raw character would have to be 32 bits, and sizeof(void *) might very well be 1 (and it's time to implement a packed character type to avoid wasting 24 bits on each char). To make a claim like that you have to name the architecture and compiler (including the version). – dmckee Oct 9 '10 at 18:47
fyi, os: tinycore 3 compiler: gcc4.4.0 arch: atom x86 – sizeofProb Oct 9 '10 at 18:54
@dmckee: Such an environment would not be linux (at least, not linux as we know it. Maybe something linux-inspired). POSIX mandates that CHAR_BIT is exactly 8. Of course with emulation you could run linux somewhere above that hardware, or you could provide that environment somewhere above linux, but in either case, when talking about the 32-bit-char environment it would be wrong to describe it as "32-bit linux". The questioner has said, "32-bit linux", and that is enough to tell us the sizes of char and char*. – Steve Jessop Oct 9 '10 at 18:54
show 2 more comments
feedback

2 Answers

up vote 4 down vote accepted

Compilers usually add padding to structures to align them on word boundaries (because accessing word-aligned locations requires fewer memory accesses and hence is faster).

So even though the char takes only 1 byte, c_ptr is shifted to the next 4-byte boundary, hence the result of 8 bytes.

link|improve this answer
it now makes sense, but why it just takes 1 byte when there is only char exits as a member? why wouldn't compiler takes it upto 4 bytes if access is more faster? – sizeofProb Oct 9 '10 at 18:23
It's not that accessing 4 bytes is faster, it's just that accessing memory locations that are multiples of 4 bytes (on a 32-bit system) is faster. When there's only 1 char, the size is 1 but that 1 character will still be aligned on a 4-byte boundary. – casablanca Oct 9 '10 at 18:26
got it, thx :) but it wouldn't be wrong to say that sizeof the class is 5 instead of 8 when the compiler features are shut down, right? – sizeofProb Oct 9 '10 at 18:27
Yes, in fact, there is a directive to do just that: #pragma pack – casablanca Oct 9 '10 at 18:29
1  
@casablanca: the alignment requirement of an object is expressed in terms of multiples of the size of a char. Since arrays occupy contiguous memory, the alignment requirement of a char necessarily is 1, which is its size. Now, "1" might represent 32 bits of memory, which you might call "4 bytes", but as far as that C++ environment is concerned, if it's the space a char occupies, then it's 1 byte. – Steve Jessop Oct 9 '10 at 19:11
show 9 more comments
feedback

This is caused by padding.
The compiler is adding padding:

  • to make access to members as fast as possible
  • also to make arrays of the object pack so that access to elements effecient.

So objects that have a size of 1 can be aligned to 1 byte boundaries and still be easy/efficient to read. While objects of size of 4 need to be aligned on 4 byte boundaries (as appropriate to your compiler (technically you can align to 1 byte boundaries but this means you usually need multiple instructions to extract and combine and thus it is more efficient to write to 4 byte boundaries)).

Thus for optimum alignment of structures it is best to order the members by size (largest first) This will give you the optimum packing strategy in most normal situations.

This will not stop your object being eight bytes though.
As the compiler is also taking into account that your class may be used in arrays. Thus each element in the array needs to be aligned so that the largest member of each element is aligned appropriately.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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