Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering how static member variables are typically implemented in languages like C++ and Java and if their use affects the size of instantiated objects. I know that a static members are shared by all instances of that class, but how is it shared? If it may affect object size, would having 10 static variables add more size than 1? I'm asking because I can think of two ways it might be implemented: adding a pointer to static data to each object similar to the way some implementations add a pointer to the virtual function table, or another way might be that the static data is just referenced directly like a global variable with the offset being resolved by the linker / loader.

share|improve this question
+1 because this feels like a question common to many programmers. – Davidann Jan 9 '11 at 18:58
1  
This is the kind of question you could easily test yourself. Just create the appropriate classes and do sizeof(T) it will tell you how big they are. – Loki Astari Jan 9 '11 at 20:33
@Martin York: AFAIK, there is no sizeof operator in Java. – Robert S. Barnes Jan 9 '11 at 20:52
1  

2 Answers

up vote 20 down vote accepted

Since you tagged your question java as well as C++, I would answer for C++ only.

In C++, static members don't belong to the instances of class. they don't increase size of instances and class even by 1 bit!

struct A
{
    int i;
    static int j;
};
struct B
{
    int i;
};
std::cout << (sizeof(A) == sizeof(B)) << std::endl;

Output:

1

That is, size of A and B is exactly same. static members are more like global objects accessed through A::j.

See demonstration at ideone : http://www.ideone.com/YeYxe


$9.4.2/1 from the C++ Standard (2003),

A static data member is not part of the subobjects of a class. There is only one copy of a static data member shared by all the objects of the class.

$9.4.2/3 and 7 from the Standard,

once the static data member has been defined, it exists even if no objects of its class have been created.

Static data members are initialized and destroyed exactly like non-local objects (3.6.2, 3.6.3).

As I said, static members are more like global objects!

share|improve this answer
@Nawaz: Interesting. So if we want to serialise A we can not just assume that the necessary memory is the result of sizeof(A). Right? How can we know the real size then? – Nerian Jan 9 '11 at 18:51
3  
static variables are not part of the object itself and should not get serialized like it is. – Vinay Pai Jan 9 '11 at 18:55
1  
@Nerian : serialization also depends on what members you want to include in the serialized object, and what not. since static members don't belong to the instances of the classes, then most likely you don't want to serialize it either; they are more like global objects accessed using A::j. Anyway, don't trust me opinion. I don't know much about serialization. Ask someone who knows. And start another topic. :-) – Nawaz Jan 9 '11 at 18:58
1  
+1: for the link to ideone.com, first time I've seen it. Very Cool! – Robert S. Barnes Jan 9 '11 at 19:06
3  
@Robert This can be inferred from the definition of POD types; the Standard carefully states that adding static members cannot turn a POD type into a non-POD type. And the memory layout of POD type is strictly defined. – anatolyg Jan 9 '11 at 19:10
show 8 more comments

Static members are resolved by the compiler at compile-time. In many ways static variables are no different than global variables under the hood. The differences only lie in how you refer to them in your code, the scope where they are visible, and how and when they get initialized.

share|improve this answer
Would you add a link for reference material which further explains your answer, please? – Davidann Jan 9 '11 at 18:56
2  
@David: I'm not Vinay, of course, but I'm not sure what sort of reference material would address this. I think Vinay's answer is best supported by what's not in the language specifications for C++ and Java, respectively: Nothing in the definitions suggests that static variables would impose a runtime overhead on class instances; therefore, they don't. – Dan Breslau Jan 9 '11 at 19:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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