Tagged Questions
6
votes
5answers
1k views
What is the lifetime of class static variables in C++?
If I have a class called Test ::
class Test
{
static std::vector<int> staticVector;
};
when does staticVector get constructed and when does it get destructed ?
Is it with the ...