More C++ Idioms/Runtime Static Initialization Order Idioms

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Runtime Static Initialization Order Idioms
[edit | edit source]

Intent[edit | edit source]

Control the order of initialization and destruction of non-local static objects across compilation units that are otherwise ordered in an implementation dependent manner.

Motivation[edit | edit source]

  • Order of initialization of static objects spread across different compilation units is not well defined. Order of destruction is the reverse of initialization order but initialization order itself is implementation defined. Bring order to this chaos.
  • The destructor of static objects are non-trivial and have important side-effects that have to happen

Solution and Sample Code[edit | edit source]

The following idioms are commonly used to control the order of initialization of static objects.