开发者

How do static member variables affect object size?

开发者 https://www.devze.com 2023-02-03 13:15 出处:网络
I\'m wondering how static member variables are typically implemented in languages like C++ and if thei开发者_C百科r use affects the size of instantiated objects.

I'm wondering how static member variables are typically implemented in languages like C++ and if thei开发者_C百科r 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 affects 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
  • the static data is just referenced directly like a global variable with the offset being resolved by the linker / loader


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!


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号