vote up 5 vote down star
2

I was wondering what could be the size of an object of an empty class. It surely could not be 0 bytes since it should be possible to reference and point to it like any other object. But, how big is such an object?

I used this small program:

#include <iostream>
using namespace std;

class Empty {};

int main()
{
    Empty e;
    cerr << sizeof(e) << endl;
    return 0;
}

The output I got on both Visual C++ and Cygwin-g++ compilers was 1 byte! This was a little surprising to me since I was expecting it to be of the size of the machine word (32 bits or 4 bytes).

Can anyone explain why the size of 1 byte? Why not 4 bytes? Is this dependent on compiler or the machine too? Also, can someone give a more cogent reason for why an empty class object will not be of size 0 bytes?

flag

I see no reason why it could not be zero. But by giving it a size others things are easier in the compiler. If you have an array of these things then each element needs a unique address. A size of 1 makes this easy. – Martin York Mar 7 at 10:32

5 Answers

vote up 13 vote down check

Quoting Bjarne Stroustrup's C++ Style and Technique FAQ, the reason the size is non-zero is "To ensure that the addresses of two different objects will be different." And the size can be 1 because alignment doesn't matter here, as there is nothing to actually look at.

link|flag
Bah, what the heck would he know about C++? :-) – paxdiablo Mar 17 at 4:37
vote up 1 vote down

I think it might be helpful to link to an answer explaining this good too. It is about boost::compressed_pair by Logan Capaldo.

link|flag
That was very informative. Thanks! :-) – Ashwin Mar 20 at 5:00
vote up 9 vote down

The standard states that all objects have sizeof() >= 1:

Unless it is a bit-field (class.bit), a most derived object shall have a non-zero size and shall occupy one or more bytes of storage. Base class sub-objects may have zero size. ISO/IEC FDIS 14882:1998(E) intro.object

link|flag
I find that hard to believe. The standard goes out of its way to make sure implementations have a free hand to do a good job of optimization tying the hands of the implementer like that does not sound like the kind of the thing the standard normally does (I could be wrong) – Martin York Mar 7 at 10:35
It actually solves many problems. – Brian Neal Mar 7 at 21:00
vote up -1 vote down

There is nothing to stop you having a pointer or reference to something that is 0 bytes long. The memory required to store the address is held in the pointer, not the pointed to object.

I would have expected an empty class or struct to be 0 bytes. The reason for this is that I know and use the fact that the size of a class with one POD member is the size of that member, assuming #pragma pack(1). Out of interest, how big is an array of 1000 of your empty class?

link|flag
having class Empty {}; void Foo() { Empty a, b; } the C++ standard guarantees that &a != &b, which wouldn't work with zero size. It works when Empty is used as a base class, though, if the compiler implements this optimization. – peterchen Mar 7 at 11:42
@peterchen, you learn something new everyday! – smacl Mar 7 at 14:27
i did not downvote you. but your first sentence is right (in a way, at least): char *c = new char[0]; :) of course, that's somewhat contrived, but it's an example for your first sentence. – Johannes Schaub - litb Mar 8 at 5:41
vote up 5 vote down

That's really an implementation detail. I originally thought it could be zero bytes or a thousand bytes, that it has no bearing on the language specification. But, after looking at the standard (section 5.3.3), it appears that sizeof must always return 1 or greater, no matter what.

The size of a most derived class shall be greater than zero.

The reason why it may not be a machine word is that there are no elements within it that require it to be aligned on a word boundary (such as an integer). For example, if you place char x; int y; inside the class, my GCC clocks it at eight bytes (since the second int must be aligned).

link|flag
The reason for the "not zero" is that different objects should have different addresses. Imagine an array of zero-size objects. How would you index it? In some cases, the compiler is allowed to optimize this away though (the empty base class optmization) – jalf Mar 7 at 11:07

Your Answer

Get an OpenID
or

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