Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sizeof empty class

Tags:

c++

With the code:

#include <iostream>

class A {};
class B { char x; };

int main()
{
    std::cerr << sizeof(A) << " " << sizeof(B) << std::endl;
}

I know that it's a common interview question to ask the size of an empty class - and I know the answer is one.

My question is... what is held in that "1" byte for an empty class (I'm guessing its empty), and what does the compiler do internally to make it so that sizeof B is the same as sizeof A in this case?

I'd like to fully understand it rather than just know the answer.

like image 548
John Humphreys Avatar asked Aug 01 '11 14:08

John Humphreys


2 Answers

This isn’t really a meaningful question: The runtime just marks the one byte as occupied so that no other object will be allocated at its position. But there isn’t anything “held” there to occupy the byte.

The only reason for this rule is that objects must be uniquely identifiable. An object is identified by the address it has in memory. To ensure that no two objects have the same address (except in the case of base class objects), objects of empty classes “occupy” memory by having a non-zero size.

like image 164
Konrad Rudolph Avatar answered Sep 25 '22 11:09

Konrad Rudolph


There is no requirement in the C++ standard that an empty object should have one byte of memory occupied. It is purely based on the implementation.

EDIT: true, it's conforming ( ISO/IEC 14882 p.149 ):

9 Classes [class]
..
..
..
3 Complete objects and member subobjects of class type shall have nonzero size ...

like image 31
cprogrammer Avatar answered Sep 25 '22 11:09

cprogrammer