Local static variable destruction

Local static variable dead time can't be confirmed. So we should avoid to use other local static variable at the destructor.
Static variables are allocated at stack and follow FILO rule. If you generate static A before static B, and A use B's attribute in A's destructor, finally A will crash in the deconstruction time, because B has dreaded... Remember!! Stack is FILO.

Comments

Popular posts from this blog

Drawing textured cube with Vulkan on Android

董事長您好

C++ unit testing & CI integration in GitHub (2/2)