If I have a class called Test ::
class Test { static std::vector staticVector; };
when does staticVector ge
It gets constructed at the same time the global variables get constructed and destructed along with the globals as well.