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.
|
|
Since you tagged your question 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!
Output:
That is, size of See demonstration at ideone : http://www.ideone.com/YeYxe $9.4.2/1 from the C++ Standard (2003),
$9.4.2/3 and 7 from the Standard,
As I said, static members are more like global objects! |
|||||||||||||||||||
|
|
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. |
|||||||
|