What is the lifetime of class static variables in C++?

后端 未结 6 756
野的像风
野的像风 2020-12-25 08:31

If I have a class called Test ::

class Test
{
    static std::vector staticVector;
};

when does staticVector ge

6条回答
  •  悲哀的现实
    2020-12-25 08:52

    It gets constructed at the same time the global variables get constructed and destructed along with the globals as well.

提交回复
热议问题