up vote 18 down vote favorite
10
share [g+] share [fb]

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?

link|improve this question

62% accept rate
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. – Loki Astari Mar 7 '09 at 10:32
feedback

9 Answers

up vote 31 down vote accepted

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|improve this answer
6  
Bah, what the heck would he know about C++? :-) – paxdiablo Mar 17 '09 at 4:37
Does the need to "ensure that the addresses of two different objects will be different" have something to do with C++? I mean why was the need not felt for C? – Lazer May 16 '10 at 5:21
3  
@Lazer, because there are no empty structs in C. – aib Nov 4 '10 at 10:16
feedback

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|improve this answer
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) – Loki Astari Mar 7 '09 at 10:35
It actually solves many problems. – Brian Neal Mar 7 '09 at 21:00
@Brian Neal: for example? – Lazer May 16 '10 at 5:22
@eSKay - This is required so that different objects get different addresses. You could not have a map of pointers to objects, for example, if different instances had the same address. – Brian Neal May 16 '10 at 17:34
feedback

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|improve this answer
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 '09 at 11:07
@jalf: "How would you index it?" The same way I would do in C (for an array of struct objects, for example)?? – Lazer May 16 '10 at 5:24
@eSKay - You couldn't if they had 0 size. They'd all be at element 0. – Brian Neal May 16 '10 at 17:35
feedback

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|improve this answer
That was very informative. Thanks! :-) – Ashwin Mar 20 '09 at 5:00
feedback

Allocation of 1 byte for an empty class is compiler dependent. Compilers need to make sure objects reside in different memory locations and they need to allocate non zero memory size to an object. Listen to notes on this topic here: http://listenvoice.com/listenVoiceNote.aspx?id=27

Even though compilers allocates non zero size to an empty class they also do optimizations when new classes are derived from empty classes. Listen about empty base optimization on ListenVoice's c++ programming interview questions.

link|improve this answer
feedback

the reason for class with no data members but having size 1 byte is that the this*strong text* must be stored in memory so that a reference or pointer can point to the object of that class

link|improve this answer
feedback

It is because of this pointer , although pointer is (integer) of 4 byte but it refer to a one memory location ( one Unit ) which is 1 byte.

link|improve this answer
feedback

This may help u :-) http://bytes.com/topic/c/insights/660463-sizeof-empty-class-structure-1-a

The sizeof an empty class or structure is 1

The reason this happens boils down to properly implementing the standard, one of the things the C++ standard says is that "no object shall have the same address in memory as any other variable".... What is the easiest way to ensure this? Make sure that all types have a non-zero size. In order to achieve this the compiler adds a dummy byte to structures and classes that have no data members and no virtual functions so that they have a size of 1 rather than a size of 0 and then they are guaranteed to have a unique memory address.

link|improve this answer
This question was answered over two years ago. What does this answer add that was missing? – GMan Dec 4 '11 at 20:29
feedback

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|improve this answer
2  
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 '09 at 11:42
@peterchen, you learn something new everyday! – Shane MacLaughlin Mar 7 '09 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 '09 at 5:41
1000=>non-programmer =>-1 – Behrooz Jul 23 '10 at 12:08
feedback

Your Answer

 
or
required, but never shown

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